import React from 'react'; export type CheckboxSize = 'sm' | 'md' | 'lg'; export type CheckboxProps = Omit, 'type' | 'size' | 'className' | 'style'> & { label: string; hideLabel?: boolean; size?: CheckboxSize; indeterminate?: boolean; className?: string; style?: React.CSSProperties; }; type CheckboxComponent = React.ForwardRefExoticComponent & React.RefAttributes>; declare const Checkbox: CheckboxComponent; export default Checkbox; //# sourceMappingURL=index.d.ts.map