export interface RadioProps {
    style?: any;
    defaultChecked?: boolean;
    checked?: boolean;
    disabled?: boolean;
    onChange?: Function;
    name?: string;
    wrapLabel?: boolean;
}
export interface RadioItemProps extends RadioProps {
    radioProps?: Object;
    onPress?: () => any;
}
