/// <reference types="react" />
import { MarginType, TypographyType } from '../../../types/styleType';
import { InputType } from '../../../types/elementType';
import { CHECKBOX_OPTION } from './options';
export interface ICheckboxProps extends InputType, MarginType {
    size?: keyof typeof CHECKBOX_OPTION;
    label?: string;
    textType?: TypographyType;
    handleChecked?: (checked: boolean) => void;
}
declare const Checkbox: import("react").ForwardRefExoticComponent<ICheckboxProps & import("react").RefAttributes<HTMLInputElement>>;
export default Checkbox;
