import React from "react";
type OptionType = {
    value: any;
    label: string;
    [key: string]: any;
};
type Props<T> = {
    options: T[];
    value: any[];
    onChange?: (value: any[]) => void;
};
declare const CheckboxControl: <T extends OptionType>(props: Props<T>) => React.JSX.Element;
export default CheckboxControl;
