/// export interface CheckboxProps extends React.InputHTMLAttributes { /** * Add a label */ label?: string; /** * If disable */ disabled?: boolean; /** * If checked */ checked?: boolean; /** * If indeterminate */ indeterminate?: boolean; } declare const Checkbox: import("react").ForwardRefExoticComponent>; export default Checkbox;