import { type PropsWithChildren } from 'react'; export type DefaultCheckboxContextValue = string | number; export type CheckboxContextValue = { disabled: boolean; name: string; value: Value[]; onChange: (event: Value) => void; }; export declare function CheckboxProvider({ children, value, }: PropsWithChildren<{ value: CheckboxContextValue; }>): import("react/jsx-runtime").JSX.Element; export declare namespace CheckboxProvider { var displayName: string; } export declare const useCheckbox: () => CheckboxContextValue | null; //# sourceMappingURL=Checkbox.context.d.ts.map