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