import type { Snippet } from 'svelte'; import type { HTMLAttributes } from 'svelte/elements'; export interface DialogProps extends Omit, 'popover'> { icon?: Snippet; headline: string; supportingText?: string; divider?: boolean; actions?: Snippet; quick?: boolean; element?: HTMLElement; }