import type { Argv, ArgumentsCamelCase } from 'yargs'; import { ICommand } from './base'; export interface ICICheckoutCommandOptions { to?: string[]; from?: string[]; } export declare class CICheckoutCommand implements ICommand { cmd: string; description: string; private _gitSparseCheckoutService; builder(yargs: Argv): void; handler: (args: ArgumentsCamelCase) => Promise; } //# sourceMappingURL=ci-checkout.d.ts.map