UNPKG

@mattilsynet/designsystem-svelte

Version:

Design system for Mattilsynet

13 lines (12 loc) 409 B
import type { Snippet } from 'svelte'; declare const DialogBox: import("svelte").Component<{ isOpen?: boolean; title?: string; ariaTitle?: string; closeBtnAriaLabel?: string; onClosingDialog?: (shouldReappear: boolean) => void; dialogRef?: HTMLDivElement; children?: Snippet; }, {}, "isOpen" | "dialogRef">; type DialogBox = ReturnType<typeof DialogBox>; export default DialogBox;