import React from 'react'; import type { RadioGroupProps } from './types'; export declare const RADIO_GROUP_CONTAINER_TEST_ID = "amplify__radio-group__container"; export default function RadioGroup({ accessible, accessibilityRole, children, direction, disabled, initialValue, label, labelPosition, labelStyle, onChange, onValueChange, size, style, ...rest }: RadioGroupProps): React.JSX.Element;