import { type WithElementRef } from "../../../utils.js"; import type { HTMLButtonAttributes } from "svelte/elements"; type Props = WithElementRef & { checked?: boolean; onCheckedChange?: (checked: boolean) => void; }; declare const DropdownMenuCheckboxItem: import("svelte").Component; type DropdownMenuCheckboxItem = ReturnType; export default DropdownMenuCheckboxItem;