import { AlertDialog as AlertDialogPrimitive } from "bits-ui"; import type { WithoutChildrenOrChild } from "bits-ui"; import type { Snippet } from "svelte"; type $$ComponentProps = WithoutChildrenOrChild & { children?: Snippet; class?: string; }; declare const AlertDialogContent: import("svelte").Component<$$ComponentProps, {}, "ref">; type AlertDialogContent = ReturnType; export default AlertDialogContent;