export default ConfirmationDialog; type ConfirmationDialog = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A modal confirmation dialog. It shows the OK and Cancel buttons, just like `window.confirm()`. * @see https://w3c.github.io/aria/#alertdialog * @see https://www.w3.org/WAI/ARIA/apg/patterns/alertdialog/ * @see https://developer.mozilla.org/en-US/docs/Web/API/Window/confirm */ declare const ConfirmationDialog: import("svelte").Component, {}, "open">; import type { ModalProps } from '../../typedefs'; import type { DialogProps } from '../../typedefs';