import React from 'react'; export interface CheckboxConfig { updateState?: (value: string | number, checked: boolean) => void; disabledAll: boolean; values: string[]; inGroup: boolean; } export declare const CheckboxContext: React.Context; export declare const useCheckbox: () => CheckboxConfig; //# sourceMappingURL=CheckboxContext.d.ts.map