import React from 'react'; import { type StyleProp, type TextStyle, type ViewStyle } from 'react-native'; import type { SelectModel } from '../models/SelectModel'; export interface RadioButtonProps { data: SelectModel[]; onSelect: (val: string) => void; selected?: string; selectedColor?: string; type?: 'horizontal' | 'vertical' | 'button'; labelStyleProps?: TextStyle; buttonContainerColor?: string; buttonStyleProps?: StyleProp; } declare const RadioGroup: (props: RadioButtonProps) => React.JSX.Element; export default RadioGroup; //# sourceMappingURL=RadioGroup.d.ts.map