///
export type CheckboxProps = Omit, 'size'> & {
children?: React.ReactNode;
label?: React.ReactNode;
size?: 'small' | 'regular' | 'medium';
width?: string;
};
export declare const Checkbox: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;