export default AlertDialog; type AlertDialog = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A modal alert dialog. It only shows the OK button, just like `window.alert()`. * @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/alert */ declare const AlertDialog: import("svelte").Component, {}, "open">; import type { ModalProps } from '../../typedefs'; import type { DialogProps } from '../../typedefs';