import { FC } from 'react'; import { InputSize, LabelPosition } from 'types'; interface ICheckbox { theme?: any; handleClick: (value: boolean) => void; label?: string; labelPosition?: LabelPosition; isIntermedian?: boolean; size?: InputSize; value: boolean; readOnly?: boolean; name?: string; width?: string; } export declare const Checkbox: FC; export {};