import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../../libs/fsresponsive'; import type { AccessibilityRole, ViewStyle } from 'react-native'; import React from 'react'; import type { FC } from 'react'; import type { WithConditionalProps, WithDataArrayProps, WithDataTextProps } from '../../../frameworks/property-binding'; import type { StandardContainerProps } from '../../../models'; import type { ValuesInput } from './radio.type'; export interface PreStandardizedRadioGroupComponentProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: ViewStyle; nativeID: string; name: string; values: ValuesInput[]; defaultValue: string; /** * @TJS-ignore */ children: React.ReactNode; } export declare type BaseRadioGroupComponentProps = WithMediaQueryInnerProps>; export declare type RadioGroupComponentProps = WithConditionalProps & WithDataTextProps, ValuesInput[], 'values'>, 'defaultValue' | 'name'>; export declare const BaseRadioGroup: FC; export declare const RadioGroupComponent: FC; export default RadioGroupComponent;