import React from 'react'; export interface CheckboxContextType { checkboxId: string; size: 'sm' | 'md'; disabled?: boolean; hasError?: boolean; descriptionId?: string; } export declare const useCheckboxContext: () => CheckboxContextType; export interface CheckboxProviderProps { value: CheckboxContextType; children: React.ReactNode; } export declare const CheckboxProvider: React.FC; //# sourceMappingURL=CheckboxContext.d.ts.map