import { InputHTMLAttributes } from 'react'; import { BaseComponentProps, Size } from '../../../types'; import './Checkbox.css'; export interface CheckboxProps extends BaseComponentProps, Omit, 'type' | 'size' | 'className' | 'style'> { size?: Size; label?: string; indeterminate?: boolean; } export declare const Checkbox: import("react").ForwardRefExoticComponent>; //# sourceMappingURL=Checkbox.d.ts.map