import React from 'react'; import { StyleProp, ViewStyle } from 'react-native'; interface Props { disabled?: boolean; labelledBy?: string; onBlur?: (event: FocusEvent) => void; onFocus?: (event: FocusEvent) => void; onValueChange?: (checked: boolean) => void; style?: StyleProp; value: boolean; } declare const RadioSelect: (props: Props) => React.ReactElement React.ReactElement React.Component)>) | (new (props: any) => React.Component)>; export default RadioSelect; //# sourceMappingURL=RadioSelect.d.ts.map