export declare const askInput: (name: string, description: string, checkValidity?: boolean) => Promise; export declare const askYesOrNo: (message: string) => Promise<"yes" | "no">; export declare const askSelect: (answers: string[], message: string) => Promise;