/// <reference types="hoist-non-react-statics" />
import React from 'react';
export interface ICheckboxGroupItemProps {
    /**标签名字 */
    label?: string;
    /**选项值 */
    options: any[];
    /**当前值 */
    value?: any[];
    /**设置当前值 */
    onChange: (value: any) => void;
    explain?: string;
}
export declare class CheckboxGroupItem extends React.Component<ICheckboxGroupItemProps, any> {
    get options(): {
        value: any;
        label: string;
    }[];
    render(): React.JSX.Element;
}
declare const _default: React.ComponentClass<ICheckboxGroupItemProps, any> & import("hoist-non-react-statics").NonReactStatics<(React.ComponentClass<ICheckboxGroupItemProps, any> & typeof CheckboxGroupItem) | (React.FunctionComponent<ICheckboxGroupItemProps> & typeof CheckboxGroupItem), {}>;
export default _default;
