ui-ingredients
Version:
Headless component library for Svelte powered by zag
7 lines (6 loc) • 341 B
TypeScript
import type { HtmlIngredientProps } from '../types.js';
export interface AlertDialogTitleProps extends HtmlIngredientProps<'h2', HTMLHeadingElement> {
}
declare const AlertDialogTitle: import("svelte").Component<AlertDialogTitleProps, {}, "ref">;
type AlertDialogTitle = ReturnType<typeof AlertDialogTitle>;
export default AlertDialogTitle;