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