import { NotifyService } from 'src/services/notify/notify.service';
import { EntityManager } from 'typeorm';
import { TypedocumentService } from '../typedocument/typedocument.service';
import { LoggerService } from 'src/logger/logger.service';
export declare class DownloadfileService {
    private readonly typeDocService;
    private readonly logger;
    private readonly notifyServce;
    private readonly entityManager;
    private sftp;
    private fileLignes;
    constructor(typeDocService: TypedocumentService, logger: LoggerService, notifyServce: NotifyService, entityManager: EntityManager);
    remoteProcessFile(): Promise<any>;
    private downloadDirRecursive;
    private saveFilePathsToJson;
    private saveFilePathsToTxt;
}
