UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 386 B
import type { Action } from 'svelte/action'; import type { HtmlIngredientProps } from '../types.js'; export interface DialogBackdropProps extends HtmlIngredientProps<'div', HTMLDivElement, never, Action> { } declare const DialogBackdrop: import("svelte").Component<DialogBackdropProps, {}, "ref">; type DialogBackdrop = ReturnType<typeof DialogBackdrop>; export default DialogBackdrop;