import React from 'react'; import { CSS } from "../config"; interface Props { value: string[]; disabled?: boolean; onChange?: (values: string[]) => void; useRow?: boolean; label?: string; css?: CSS; } declare type NativeAttrs = Omit, keyof Props>; export declare type CheckboxGroupProps = Props & NativeAttrs; declare const CheckboxGroup: React.FC>; export default CheckboxGroup;