import React, { JSX } from 'react';
import { StyleProp, ViewStyle } from 'react-native';
interface RadioButtonProps {
    label: string | JSX.Element;
    selected: boolean;
    onPress: () => void;
    containerStyle?: StyleProp<ViewStyle>;
}
declare const RadioButton: React.FC<RadioButtonProps>;
export default RadioButton;
