UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 305 B
import type { HtmlIngredientProps } from '../types.js'; export interface ToastTitleProps extends HtmlIngredientProps<'h2', HTMLHeadingElement> { } declare const ToastTitle: import("svelte").Component<ToastTitleProps, {}, "ref">; type ToastTitle = ReturnType<typeof ToastTitle>; export default ToastTitle;