import { DropdownMenu as DropdownMenuPrimitive, type WithoutChildrenOrChild } from "bits-ui"; import type { Snippet } from "svelte"; type $$ComponentProps = WithoutChildrenOrChild & { children?: Snippet; }; declare const DropdownMenuCheckboxItem: import("svelte").Component<$$ComponentProps, {}, "ref" | "checked" | "indeterminate">; type DropdownMenuCheckboxItem = ReturnType; export default DropdownMenuCheckboxItem;