import * as RadixCheckbox from "@radix-ui/react-checkbox";
import { ComponentProps } from "react";
type Props = ComponentProps<typeof RadixCheckbox.Root> & {
    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