import * as React from "react"; import { StyleProp, ViewStyle } from "react-native"; declare type CustomStyleProp = StyleProp | Array>; export interface IRadioButtonProps { style?: CustomStyleProp; innerContainerStyle?: CustomStyleProp; isActive?: boolean; initial?: boolean; innerBackgroundColor?: string; onPress: (isActive: boolean) => void; } interface IState { isActive: boolean; } export default class RadioButton extends React.Component { constructor(props: IRadioButtonProps); handlePress: () => void; render(): JSX.Element; } export {};