import { Command } from 'commander'; import { FileService } from '../services/file.service'; import { Logger } from '../services/logger.service'; export declare class SortCommand { private program; private log; private fileService; private command; constructor(program: Command, log: Logger, fileService: FileService); setup(): void; sort(): import("rxjs").Observable; getCommand(): Command; }