import { FC, InputHTMLAttributes, Ref, ReactNode } from 'react';
import { CheckboxValueType } from './CheckboxGroup';
/**
*
*/
export type CheckboxProps = {
label?: string;
required?: boolean;
cols?: number;
name?: string;
value?: CheckboxValueType;
checked?: boolean;
defaultChecked?: boolean;
indeterminate?: boolean;
tooltip?: ReactNode;
tooltipIcon?: string;
elementRef?: Ref;
inputRef?: Ref;
} & InputHTMLAttributes;
/**
*
*/
export declare const Checkbox: FC;