import { View } from "react-native"; import type { Field, FieldControlProps } from "../../common/constants"; import { SegmentedButtons, Text } from "react-native-paper"; interface Props extends FieldControlProps { field: Field; } function RadioButtonControl(props: Props) { return ( Payment Mode } /> ) } export default RadioButtonControl;