///
import { FormContextType, FormFieldError } from "../../types/common-form-components-types";
import { CheckboxProps as MUIProps } from "@material-ui/core";
import { OptionType } from "../../model";
export declare type CheckBoxProps = FormContextType & FormFieldError & {
label?: string;
helperText?: string;
options: (OptionType & {
MuiProps?: Exclude;
})[];
};
export declare const CheckBox: (props: CheckBoxProps) => JSX.Element;