UNPKG

ui-ingredients

Version:

Headless component library for Svelte powered by zag

7 lines (6 loc) 378 B
import type { HtmlIngredientProps } from '../types.js'; export interface AlertDialogDescriptionProps extends HtmlIngredientProps<'p', HTMLParagraphElement> { } declare const AlertDialogDescription: import("svelte").Component<AlertDialogDescriptionProps, {}, "ref">; type AlertDialogDescription = ReturnType<typeof AlertDialogDescription>; export default AlertDialogDescription;