UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

8 lines (7 loc) 335 B
import type { Api } from '@zag-js/toast'; import type { HtmlIngredientProps } from '../types.js'; export interface ToastProps extends HtmlIngredientProps<'div', HTMLDivElement, Api> { } declare const ToastRoot: import("svelte").Component<ToastProps, {}, "ref">; type ToastRoot = ReturnType<typeof ToastRoot>; export default ToastRoot;