import { CreateAlertOptions } from './AlertDialog.js'; import { CreateConfirmationOptions } from './ConfirmDialog.js'; import { CreatePromptOptions } from './PromptDialog.js'; export declare type AlertType = (options: CreateAlertOptions) => Promise; export declare type ConfirmType = (options: CreateConfirmationOptions) => Promise; export declare type PromptType = (options: CreatePromptOptions) => Promise<{ label: string; value: string; }[]>; export declare const alert: AlertType; export declare const confirm: ConfirmType; export declare const prompt: PromptType; export declare const Alert: AlertType; export declare const Confirm: ConfirmType; export declare const Prompt: PromptType;