import { Context } from "../../../bundler/context.js"; export declare const promptString: (ctx: Context, options: { message: string; default?: string; validate?: (value: string) => boolean | string | Promise; }) => Promise; export declare const promptSecret: (ctx: Context, options: { message: string; }) => Promise; export declare const promptOptions: (ctx: Context, options: { message: string; choices: { name: string; value: V; }[]; default?: V; prefix?: string; suffix?: string; }) => Promise; export declare const promptSearch: (ctx: Context, options: { message: string; choices: { name: string; value: V; }[]; default?: V; }) => Promise; export declare const promptYesNo: (ctx: Context, options: { message: string; default?: boolean; prefix?: string; nonInteractiveError?: string; }) => Promise; //# sourceMappingURL=prompts.d.ts.map