/** * Wizard command - Interactive guided setup for first-time users */ import type { CommandContext } from '../types/cli-types.js'; export interface WizardOptions { skipIntro?: boolean; } /** * Interactive wizard for first-time users */ export declare function wizardCommand(options: WizardOptions, context: CommandContext): Promise; //# sourceMappingURL=wizard.d.ts.map