import type { Command as CommandPrimitive, Dialog as DialogPrimitive } from 'bits-ui'; import type { Snippet } from 'svelte'; import { type WithoutChildrenOrChild } from '../../../utils/cn.js'; type $$ComponentProps = WithoutChildrenOrChild & WithoutChildrenOrChild & { portalProps?: DialogPrimitive.PortalProps; children: Snippet; title?: string; description?: string; showCloseButton?: boolean; class?: string; }; declare const CommandDialog: import("svelte").Component<$$ComponentProps, {}, "value" | "ref" | "open">; type CommandDialog = ReturnType; export default CommandDialog;