import React from "react";
type CheckboxProps = {
    value?: boolean | null | undefined;
    isError?: boolean;
    onChange?: (value?: boolean | null) => void;
    disabled?: boolean;
};
declare const Checkbox: (props: CheckboxProps) => React.JSX.Element;
export default Checkbox;
