///
import { FlowindSize } from '../../styles';
interface CheckboxGroupContextValue {
value: string[];
onChange: (event: React.ChangeEvent) => void;
size: FlowindSize;
}
export declare const CheckboxGroupProvider: import("react").Provider;
export declare const useCheckboxGroupContext: () => CheckboxGroupContextValue;
export {};