import { ChangeEvent, FC } from 'react';
import { BaseProps } from '../util/type';
import './index.css';
declare type CheckboxProps = BaseProps & {
    text?: string;
    value?: any;
    checked?: boolean;
    disabled?: boolean;
    indeterminate?: boolean;
    onChange?: (e: ChangeEvent<HTMLInputElement>) => void;
    gap?: number;
};
export declare const CheckBox: FC<CheckboxProps>;
export {};
