export interface PromptsQuestion {
    message: string;
    description: string;
    placeholder?: string;
    type: "select" | "multiselect" | "confirm" | "text" | "number";
    name?: string;
    choices?: Array<any>;
    default?: any;
    validate?: any;
    initial?: any;
    optionsPerPage?: number;
}
export declare function prompts(options: PromptsQuestion | PromptsQuestion[]): Promise<any>;
