import { Argv } from 'yargs'; import type { ArgumentsCamelCase } from 'yargs'; import type { TerminalService } from '../../services/TerminalService'; import type { ICommand } from './base'; export interface IAutoConfigCommandOptions { overwrite?: boolean; dryRun?: boolean; } export declare class AutoConfigCommand implements ICommand { cmd: string; description: string; private _gitService; builder(yargs: Argv): void; handler: (args: ArgumentsCamelCase, terminalService: TerminalService) => Promise; } //# sourceMappingURL=auto-config.d.ts.map