export declare function wizardIntro(title: string): void; export declare function wizardOutro(message: string): void; export declare function wizardNote(body: string, title?: string): void; export declare function wizardConfirm(message: string, defaultValue?: boolean): Promise; export declare function wizardTask(startLabel: string, stopLabel: string, fn: () => Promise): Promise; export declare function wizardSelect(message: string, options: { value: T; label: string; hint?: string; }[], defaultValue?: T): Promise;