import React from "react"; import { TextStyle } from "react-native"; import { ThemeName } from "../constants/Colors"; interface Option { label: string; value: string | number; disabled?: boolean | undefined; } interface RadioButtonProps { options: Option[]; selectedValue: string | number; onSelect: (value: string | number) => void; size?: number; themeScheme?: "light" | "dark"; variant?: "default" | "secondary" | ThemeName; animationDuration?: number; radioOptionTextStyle?: TextStyle; } declare const RadioButton: React.FC; export default RadioButton; //# sourceMappingURL=RadioButton.d.ts.map