import { Dialog as DialogPrimitive, type WithoutChildrenOrChild } from "bits-ui"; import type { Snippet } from "svelte"; type $$ComponentProps = WithoutChildrenOrChild & { portalProps?: DialogPrimitive.PortalProps; children: Snippet; }; declare const DialogContent: import("svelte").Component<$$ComponentProps, {}, "ref">; type DialogContent = ReturnType; export default DialogContent;