import "./index.css"; export type CheckboxProps = React.RefAttributes & Omit, "value"> & { className?: string; id?: string; /** * Label for the checkbox. */ label?: React.ReactNode; /** * Tooltip text for the checkbox. */ title?: string; value?: boolean; /** * Reverses the checkbox layout, placing the label before the checkbox. */ reverse?: boolean; }; export declare const Checkbox: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;