import React from 'react';
type Props = {
    domName: string;
    value: boolean;
    name: string;
    onChange?: () => void;
    disabled: boolean;
};
declare const CheckBox: (props: Props) => React.JSX.Element;
export default CheckBox;
