export declare function RadioGroup(props: RadioGroupProps): JSX.Element; export interface RadioGroupProps { style?: any; textStyle?: any; value: any; onChange: (label: string, value: string) => void; options: Array<{ label: string; value: string; }>; }