import React from "react";
type Option = {
    label: string;
    value: string;
};
type CheckBoxFieldProps = {
    name: string;
    label: string;
    options: Option[];
    fieldClass?: string;
    labelClass?: string;
    optionsClass?: string;
    optionClass?: string;
};
type CheckBoxFieldRef = {
    reset: () => void;
    getValue: () => string[];
};
declare const CheckBoxField: React.ForwardRefExoticComponent<CheckBoxFieldProps & React.RefAttributes<CheckBoxFieldRef>>;
export default CheckBoxField;
