import React from 'react'; export interface RadioGroupContextType { name: string; value?: string; onChange?: (value: string) => void; size: 'sm' | 'md'; orientation: 'horizontal' | 'vertical'; disabled?: boolean; hasError?: boolean; helperId?: string; errorId?: string; } export declare const useRadioGroupContext: () => RadioGroupContextType; export interface RadioGroupProviderProps { value: RadioGroupContextType; children: React.ReactNode; } export declare const RadioGroupProvider: React.FC; //# sourceMappingURL=RadioGroupContext.d.ts.map