export declare const CheckboxGroupContext: import("solid-js").Context; type CheckboxGroupProps = { classList?: any; class?: string; block?: boolean; name?: string; value?: any[]; style?: any; children?: any; disabled?: boolean; onChange?: Function; data?: any; textField?: string; valueField?: string; }; export declare function CheckboxGroup(props: CheckboxGroupProps): import("solid-js").JSX.Element; export {};