import * as RadixCheckbox from "@radix-ui/react-checkbox"; import { ComponentProps } from "react"; type Props = ComponentProps & { indeterminate?: boolean; }; declare const Checkbox: ({ indeterminate, className, checked, onChange, ...props }: Props) => import("react/jsx-runtime").JSX.Element; export default Checkbox; //# sourceMappingURL=Checkbox.d.ts.map