import type { Argv, ArgumentsCamelCase } from 'yargs'; import { TerminalService } from '../../services/TerminalService'; import { ICommand } from './base'; export interface IInitProjectCommandOptions { profile: string; } export declare class InitProfileCommand implements ICommand { cmd: string; description: string; private _sparoProfileService; private _terminalService; builder(yargs: Argv): void; handler: (args: ArgumentsCamelCase, terminalService: TerminalService) => Promise; } //# sourceMappingURL=init-profile.d.ts.map