import type { RadioButtonStyle } from '../../../../../libs/fscomponents'; import type { WithMediaQueryInnerProps, WithMediaQueryStyleProps } from '../../../../../libs/fsresponsive'; import type { AccessibilityRole } from 'react-native'; import React from 'react'; import type { FC } from 'react'; import type { WithConditionalProps, WithDataBooleanProps, WithDataTextProps } from '../../../frameworks/property-binding'; import type { StandardContainerProps } from '../../../models'; export interface PreStandardizedRadioButtonComponentProps { accessible: boolean; accessibilityLabel: string; accessibilityRole: AccessibilityRole; accessibilityHint: string; style: RadioButtonStyle; nativeID: string; value: string; selected: boolean; /** * @TJS-ignore */ children: React.ReactNode; } export declare type BaseRadioButtonComponentProps = WithMediaQueryInnerProps>; export declare type RadioButtonComponentProps = WithConditionalProps & WithDataBooleanProps, 'value'>, 'selected'>; export declare const BaseRadioButton: FC; export declare const RadioButtonComponent: FC; export default RadioButtonComponent;