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