import { CheckboxRegisterObject, CheckTypes } from 'models'; import React, { ReactElement } from 'react'; interface ICheckboxContext { selectAllValue: CheckTypes; handleCheckboxUpdate?: (name: string, checked: CheckTypes) => void; handleSelectAll?: (prefix?: string, active?: CheckTypes) => void; registerField?: (ref: CheckboxRegisterObject) => void; } export declare const CheckboxContext: React.Context; interface Props { children: React.ReactNode; } export declare const CheckboxProvider: (props: Props) => ReactElement; export {}; //# sourceMappingURL=checkbox.context.d.ts.map