import React from "react"; import { StyleProp, ViewStyle } from "react-native"; interface RadioCircleProps { value: string; selected: string; type?: "one" | "two"; onSelect: (value: string) => void; containerStyle?: StyleProp; circleSize?: number; circleBorderWidth?: number; circleColor?: string; selectedColor?: string; activeDotSize?: number; } declare const _default: React.NamedExoticComponent; export default _default;