import { ReturnCode } from '../../types/command'; import { TargetCommand } from '../../types/command/targetCommand'; export declare class FSCommand extends TargetCommand { constructor(args: string[]); get localFolder(): string; get remoteFolder(): string; getOutputPath(): Promise; execute(): Promise; compile(): Promise; deploy(): Promise; sync(): Promise; }