import React from 'react'; import type { LabelPositions } from '../types/field'; export interface RadioGroupContextType { name: string; currentValue?: string; size?: string; defaultValue?: string; hasError?: boolean; isRequired?: boolean; isReadOnly?: boolean; isGroupDisabled?: boolean; onChange?: React.ChangeEventHandler; labelPosition?: LabelPositions; } export declare const RadioGroupContext: React.Context; export declare const useRadioGroupContext: () => RadioGroupContextType;