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