import ExecCommand from '../ExecCommand';
export declare class FileRecvCommand extends ExecCommand<void> {
    execute(remote: string, local: string): Promise<void>;
}
export declare class FileSendCommand extends ExecCommand<void> {
    execute(local: string, remote: string): Promise<void>;
}
