import React from 'react'; interface RadioGroupContextProps { value?: string; onChange?: (value: string) => void; size?: "sm" | "md" | "lg" | "xl"; disabled?: boolean; testID?: string; } declare const useRadioGroup: () => RadioGroupContextProps; interface RadioGroupProps { value?: string; onChange?: (value: string) => void; size?: "sm" | "md" | "lg" | "xl"; disabled?: boolean; children: React.ReactNode; flexDirection?: "row" | "column"; gap?: number; /** Test ID for testing frameworks */ testID?: string; } declare const RadioGroup: React.FC; export { RadioGroup, type RadioGroupContextProps, type RadioGroupProps, useRadioGroup };