import type { Toast } from './toast.js'; export interface ChooseOption { readonly label: string; readonly icon?: string; } export interface Ask { message(text: string): void; confirm(text: string): boolean | Promise; choose?(question: string, options: readonly ChooseOption[]): number | Promise; } export type Choose = NonNullable; export declare const silentAsk: Ask; export declare function toastAsk(toast: Toast): Ask; //# sourceMappingURL=ask.d.ts.map