import * as RadixCheckbox from "@radix-ui/react-checkbox"; import React from "react"; import { PrimitiveBaseProps, PrimitiveWithSizing } from "../helpers/types"; declare type RadixCheckboxProps = React.ComponentProps; interface CheckboxProps extends Omit { checked: boolean | undefined; onCheckedChange(checked: boolean | undefined): void; } interface Props extends PrimitiveBaseProps, PrimitiveWithSizing, CheckboxProps { label?: string; } export declare function Checkbox(props: Props): JSX.Element; export {};