import { type ConfirmationDialogStyle } from './types'; /** * Opens a confirmation dialog with Yes/No buttons. * * ### Options * - `title` — dialog title text * - `text` — optional body text * - `style` — visual style: `'info'`, `'warning'`, or `'alert'` (default `'alert'`) * - `icon` — optional SVG string for the confirm button icon */ export declare const openConfirmationDialog: (init: { title: string; text?: string; style?: ConfirmationDialogStyle; icon?: string; }) => Promise<{ wasCanceled: boolean; }>; export type { ConfirmationDialogStyle } from './types';