type RadioGroupContextValue = { disabled?: boolean; labelPosition: 'left' | 'right' | 'top' | 'bottom'; name: string; onValueChange: (value: string) => void; value: string; }; declare const RadioGroupContext: import("react").Context; declare function useRadioGroupContext(componentName: string): RadioGroupContextValue; export { RadioGroupContext, useRadioGroupContext };