import { DetailedHTMLProps, FC, HTMLAttributes } from 'react';
export interface CheckboxProps extends DetailedHTMLProps<HTMLAttributes<HTMLInputElement>, HTMLInputElement> {
    title: string;
    isCheckbox?: boolean;
    isSupport?: boolean;
    onChange?: (x: any) => void;
    isReadonly?: boolean;
    disabled?: boolean;
}
export declare const Checkbox: FC<CheckboxProps>;
