ui-ingredients
Version:
Headless component library for Svelte powered by zag
11 lines (10 loc) • 607 B
TypeScript
import type { Snippet } from 'svelte';
import type { PresenceStrategyProps } from '../presence/create-presence.svelte.js';
import type { Optional } from '../types.js';
import type { CreateAlertDialogProps, CreateAlertDialogReturn } from './create-alert-dialog.svelte.js';
export interface AlertDialogProps extends Optional<CreateAlertDialogProps, 'id'>, PresenceStrategyProps {
children?: Snippet<[CreateAlertDialogReturn]>;
}
declare const AlertDialogRoot: import("svelte").Component<AlertDialogProps, {}, "">;
type AlertDialogRoot = ReturnType<typeof AlertDialogRoot>;
export default AlertDialogRoot;