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