import type { Snippet } from 'svelte'; import type { SyvStyles } from '../types'; declare const Dialog: import("svelte").Component<{ id?: string; /** change UI mode to `Modal` */ required?: boolean; styles?: SyvStyles<"align-self" | "backdrop-color" | "backdrop-filter" | "background" | "border-radius" | "margin-top" | "max-width" | "padding" | "side-padding" | "z-index">; onclose?(): void; children: Snippet<[{ focusable: HTMLElement[]; }]>; }, {}, "">; type Dialog = ReturnType; export default Dialog;