/// <reference types="react" />
export type ICheckboxDataSource = Array<{
    label?: string;
    text?: string;
    value?: any;
    disabled?: boolean;
    checked?: boolean;
    style?: React.CSSProperties;
    children?: ICheckboxDataSource[];
}> | string[] | number[];
