import { FormColorTypes, FormSizeTypes } from '../../../types/form-types';
export type CheckboxVariant = "outlined" | "contained";
declare const Checkbox: import('react').ForwardRefExoticComponent<Omit<import('react').InputHTMLAttributes<HTMLInputElement>, "size"> & {
    label?: string;
    checked?: boolean;
    disabled?: boolean;
    rounded?: boolean;
    variant?: CheckboxVariant;
    color?: FormColorTypes;
    size?: FormSizeTypes;
    required?: boolean;
    showRequired?: boolean;
    helperText?: string;
    error?: boolean;
    id?: string;
} & import('react').RefAttributes<HTMLInputElement>>;
export default Checkbox;
