export declare const prompt: (promptText: string, type?: string, initial?: string) => Promise; export declare const confirmPrompt: (message: string, initial?: boolean) => Promise; export declare const selectPrompt: (message: string, choices: { title: string; value: string; description?: string; }[], initial?: number) => Promise; export declare const multiSelectPrompt: (message: string, choices: { title: string; value: string; description?: string; selected?: boolean; }[]) => Promise; export declare const passwordPrompt: (message: string, required?: boolean) => Promise; export declare const showSuccess: (message: string) => void; export declare const showError: (message: string) => void; export declare const showWarning: (message: string) => void; export declare const showInfo: (message: string) => void; //# sourceMappingURL=prompt.d.ts.map