export default Dialog; type Dialog = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * A feedback dialog widget based on the HTML `` element. * @see https://w3c.github.io/aria/#dialog * @see https://www.w3.org/WAI/ARIA/apg/patterns/dialog-modal/ */ declare const Dialog: import("svelte").Component, {}, "value" | "open">; import type { ModalProps } from '../../typedefs'; import type { DialogProps } from '../../typedefs';