import type { Argv, ArgumentsCamelCase } from 'yargs'; import type { ICommand } from './base'; import type { TerminalService } from '../../services/TerminalService'; export interface IPullCommandOptions { remote?: string; profile?: string[]; } export declare class PullCommand implements ICommand { cmd: string; description: string; private _gitService; private _gitRemoteFetchConfigService; private _sparoProfileService; builder: (yargs: Argv<{}>) => void; handler: (args: ArgumentsCamelCase, terminalService: TerminalService) => Promise; } //# sourceMappingURL=pull.d.ts.map