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