1 | import * as React from 'react';
|
2 | import { GestureResponderEvent } from 'react-native';
|
3 | import type { $RemoveChildren, ThemeProp } from '../../types';
|
4 | import TouchableRipple from '../TouchableRipple/TouchableRipple';
|
5 | export type Props = $RemoveChildren<typeof TouchableRipple> & {
|
6 | |
7 |
|
8 |
|
9 | value: string;
|
10 | |
11 |
|
12 |
|
13 | status?: 'checked' | 'unchecked';
|
14 | |
15 |
|
16 |
|
17 | disabled?: boolean;
|
18 | |
19 |
|
20 |
|
21 | onPress?: (e: GestureResponderEvent) => void;
|
22 | |
23 |
|
24 |
|
25 | color?: string;
|
26 | |
27 |
|
28 |
|
29 | theme?: ThemeProp;
|
30 | |
31 |
|
32 |
|
33 | testID?: string;
|
34 | };
|
35 |
|
36 |
|
37 |
|
38 |
|
39 |
|
40 |
|
41 |
|
42 | declare const RadioButtonIOS: {
|
43 | ({ disabled, onPress, theme: themeOverrides, status, value, testID, ...rest }: Props): React.JSX.Element;
|
44 | displayName: string;
|
45 | };
|
46 | export default RadioButtonIOS;
|
47 | export { RadioButtonIOS };
|
48 |
|
\ | No newline at end of file |