UNPKG

26.4 kBTypeScriptView Raw
1/// <reference types="react" />
2declare const Checkbox: (import("react").ComponentType<Pick<{
3 status: "checked" | "unchecked" | "indeterminate";
4 disabled?: boolean | undefined;
5 onPress?: (() => void) | undefined;
6 uncheckedColor?: string | undefined;
7 color?: string | undefined;
8 theme: ReactNativePaper.Theme;
9 testID?: string | undefined;
10}, "color" | "onPress" | "testID" | "disabled" | "status" | "uncheckedColor"> & {
11 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
12}> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<{
13 status: "checked" | "unchecked" | "indeterminate";
14 disabled?: boolean | undefined;
15 onPress?: (() => void) | undefined;
16 uncheckedColor?: string | undefined;
17 color?: string | undefined;
18 theme: ReactNativePaper.Theme;
19 testID?: string | undefined;
20}> & ((props: {
21 status: "checked" | "unchecked" | "indeterminate";
22 disabled?: boolean | undefined;
23 onPress?: (() => void) | undefined;
24 uncheckedColor?: string | undefined;
25 color?: string | undefined;
26 theme: ReactNativePaper.Theme;
27 testID?: string | undefined;
28}) => JSX.Element), {}>) & {
29 Item: import("react").ComponentType<Pick<{
30 status: "checked" | "unchecked" | "indeterminate";
31 disabled?: boolean | undefined;
32 label: string;
33 onPress?: (() => void) | undefined;
34 uncheckedColor?: string | undefined;
35 color?: string | undefined;
36 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
37 labelStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
38 theme: ReactNativePaper.Theme;
39 testID?: string | undefined;
40 position?: "leading" | "trailing" | undefined;
41 mode?: "ios" | "android" | undefined;
42 }, "label" | "style" | "color" | "onPress" | "testID" | "position" | "mode" | "labelStyle" | "disabled" | "status" | "uncheckedColor"> & {
43 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
44 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<{
45 status: "checked" | "unchecked" | "indeterminate";
46 disabled?: boolean | undefined;
47 label: string;
48 onPress?: (() => void) | undefined;
49 uncheckedColor?: string | undefined;
50 color?: string | undefined;
51 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
52 labelStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
53 theme: ReactNativePaper.Theme;
54 testID?: string | undefined;
55 position?: "leading" | "trailing" | undefined;
56 mode?: "ios" | "android" | undefined;
57 }> & {
58 ({ style, status, label, onPress, labelStyle, theme, testID, mode, position, disabled, ...props }: {
59 status: "checked" | "unchecked" | "indeterminate";
60 disabled?: boolean | undefined;
61 label: string;
62 onPress?: (() => void) | undefined;
63 uncheckedColor?: string | undefined;
64 color?: string | undefined;
65 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
66 labelStyle?: import("react-native").StyleProp<import("react-native").TextStyle>;
67 theme: ReactNativePaper.Theme;
68 testID?: string | undefined;
69 position?: "leading" | "trailing" | undefined;
70 mode?: "ios" | "android" | undefined;
71 }): JSX.Element;
72 displayName: string;
73 }, {}>;
74 Android: import("react").ComponentType<Pick<import("../../types").$RemoveChildren<import("react").ComponentType<Pick<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
75 borderless?: boolean | undefined;
76 background?: Object | undefined;
77 centered?: boolean | undefined;
78 disabled?: boolean | undefined;
79 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
80 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
81 rippleColor?: string | undefined;
82 underlayColor?: string | undefined;
83 children: import("react").ReactNode;
84 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
85 theme: ReactNativePaper.Theme;
86 }, keyof import("react-native").TouchableWithoutFeedbackProps | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | keyof import("react").RefAttributes<import("react-native").TouchableWithoutFeedback>> & {
87 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
88 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
89 borderless?: boolean | undefined;
90 background?: Object | undefined;
91 centered?: boolean | undefined;
92 disabled?: boolean | undefined;
93 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
94 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
95 rippleColor?: string | undefined;
96 underlayColor?: string | undefined;
97 children: import("react").ReactNode;
98 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
99 theme: ReactNativePaper.Theme;
100 }> & {
101 ({ style, background: _background, borderless, disabled: disabledProp, rippleColor, underlayColor: _underlayColor, children, theme, ...rest }: import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
102 borderless?: boolean | undefined;
103 background?: Object | undefined;
104 centered?: boolean | undefined;
105 disabled?: boolean | undefined;
106 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
107 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
108 rippleColor?: string | undefined;
109 underlayColor?: string | undefined;
110 children: import("react").ReactNode;
111 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
112 theme: ReactNativePaper.Theme;
113 }): JSX.Element;
114 supported: boolean;
115 }, {}>> & {
116 status: "checked" | "unchecked" | "indeterminate";
117 disabled?: boolean | undefined;
118 onPress?: (() => void) | undefined;
119 uncheckedColor?: string | undefined;
120 color?: string | undefined;
121 theme: ReactNativePaper.Theme;
122 testID?: string | undefined;
123 }, "style" | "color" | "onLayout" | "onPress" | "onPressIn" | "onPressOut" | "onLongPress" | "testID" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "accessibilityRole" | "accessibilityState" | "accessibilityHint" | "accessibilityValue" | "onAccessibilityAction" | "accessibilityLiveRegion" | "importantForAccessibility" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "key" | "hitSlop" | "delayLongPress" | "delayPressIn" | "delayPressOut" | "disabled" | "onBlur" | "onFocus" | "pressRetentionOffset" | "touchSoundDisabled" | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | "status" | "uncheckedColor"> & {
124 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
125 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("../../types").$RemoveChildren<import("react").ComponentType<Pick<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
126 borderless?: boolean | undefined;
127 background?: Object | undefined;
128 centered?: boolean | undefined;
129 disabled?: boolean | undefined;
130 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
131 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
132 rippleColor?: string | undefined;
133 underlayColor?: string | undefined;
134 children: import("react").ReactNode;
135 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
136 theme: ReactNativePaper.Theme;
137 }, keyof import("react-native").TouchableWithoutFeedbackProps | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | keyof import("react").RefAttributes<import("react-native").TouchableWithoutFeedback>> & {
138 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
139 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
140 borderless?: boolean | undefined;
141 background?: Object | undefined;
142 centered?: boolean | undefined;
143 disabled?: boolean | undefined;
144 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
145 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
146 rippleColor?: string | undefined;
147 underlayColor?: string | undefined;
148 children: import("react").ReactNode;
149 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
150 theme: ReactNativePaper.Theme;
151 }> & {
152 ({ style, background: _background, borderless, disabled: disabledProp, rippleColor, underlayColor: _underlayColor, children, theme, ...rest }: import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
153 borderless?: boolean | undefined;
154 background?: Object | undefined;
155 centered?: boolean | undefined;
156 disabled?: boolean | undefined;
157 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
158 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
159 rippleColor?: string | undefined;
160 underlayColor?: string | undefined;
161 children: import("react").ReactNode;
162 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
163 theme: ReactNativePaper.Theme;
164 }): JSX.Element;
165 supported: boolean;
166 }, {}>> & {
167 status: "checked" | "unchecked" | "indeterminate";
168 disabled?: boolean | undefined;
169 onPress?: (() => void) | undefined;
170 uncheckedColor?: string | undefined;
171 color?: string | undefined;
172 theme: ReactNativePaper.Theme;
173 testID?: string | undefined;
174 }> & {
175 ({ status, theme, disabled, onPress, testID, ...rest }: import("../../types").$RemoveChildren<import("react").ComponentType<Pick<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
176 borderless?: boolean | undefined;
177 background?: Object | undefined;
178 centered?: boolean | undefined;
179 disabled?: boolean | undefined;
180 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
181 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
182 rippleColor?: string | undefined;
183 underlayColor?: string | undefined;
184 children: import("react").ReactNode;
185 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
186 theme: ReactNativePaper.Theme;
187 }, keyof import("react-native").TouchableWithoutFeedbackProps | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | keyof import("react").RefAttributes<import("react-native").TouchableWithoutFeedback>> & {
188 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
189 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
190 borderless?: boolean | undefined;
191 background?: Object | undefined;
192 centered?: boolean | undefined;
193 disabled?: boolean | undefined;
194 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
195 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
196 rippleColor?: string | undefined;
197 underlayColor?: string | undefined;
198 children: import("react").ReactNode;
199 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
200 theme: ReactNativePaper.Theme;
201 }> & {
202 ({ style, background: _background, borderless, disabled: disabledProp, rippleColor, underlayColor: _underlayColor, children, theme, ...rest }: import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
203 borderless?: boolean | undefined;
204 background?: Object | undefined;
205 centered?: boolean | undefined;
206 disabled?: boolean | undefined;
207 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
208 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
209 rippleColor?: string | undefined;
210 underlayColor?: string | undefined;
211 children: import("react").ReactNode;
212 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
213 theme: ReactNativePaper.Theme;
214 }): JSX.Element;
215 supported: boolean;
216 }, {}>> & {
217 status: "checked" | "unchecked" | "indeterminate";
218 disabled?: boolean | undefined;
219 onPress?: (() => void) | undefined;
220 uncheckedColor?: string | undefined;
221 color?: string | undefined;
222 theme: ReactNativePaper.Theme;
223 testID?: string | undefined;
224 }): JSX.Element;
225 displayName: string;
226 }, {}>;
227 IOS: import("react").ComponentType<Pick<import("../../types").$RemoveChildren<import("react").ComponentType<Pick<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
228 borderless?: boolean | undefined;
229 background?: Object | undefined;
230 centered?: boolean | undefined;
231 disabled?: boolean | undefined;
232 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
233 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
234 rippleColor?: string | undefined;
235 underlayColor?: string | undefined;
236 children: import("react").ReactNode;
237 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
238 theme: ReactNativePaper.Theme;
239 }, keyof import("react-native").TouchableWithoutFeedbackProps | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | keyof import("react").RefAttributes<import("react-native").TouchableWithoutFeedback>> & {
240 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
241 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
242 borderless?: boolean | undefined;
243 background?: Object | undefined;
244 centered?: boolean | undefined;
245 disabled?: boolean | undefined;
246 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
247 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
248 rippleColor?: string | undefined;
249 underlayColor?: string | undefined;
250 children: import("react").ReactNode;
251 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
252 theme: ReactNativePaper.Theme;
253 }> & {
254 ({ style, background: _background, borderless, disabled: disabledProp, rippleColor, underlayColor: _underlayColor, children, theme, ...rest }: import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
255 borderless?: boolean | undefined;
256 background?: Object | undefined;
257 centered?: boolean | undefined;
258 disabled?: boolean | undefined;
259 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
260 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
261 rippleColor?: string | undefined;
262 underlayColor?: string | undefined;
263 children: import("react").ReactNode;
264 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
265 theme: ReactNativePaper.Theme;
266 }): JSX.Element;
267 supported: boolean;
268 }, {}>> & {
269 status: "checked" | "unchecked" | "indeterminate";
270 disabled?: boolean | undefined;
271 onPress?: (() => void) | undefined;
272 color?: string | undefined;
273 theme: ReactNativePaper.Theme;
274 testID?: string | undefined;
275 }, "style" | "color" | "onLayout" | "onPress" | "onPressIn" | "onPressOut" | "onLongPress" | "testID" | "accessible" | "accessibilityActions" | "accessibilityLabel" | "accessibilityRole" | "accessibilityState" | "accessibilityHint" | "accessibilityValue" | "onAccessibilityAction" | "accessibilityLiveRegion" | "importantForAccessibility" | "accessibilityElementsHidden" | "accessibilityViewIsModal" | "onAccessibilityEscape" | "onAccessibilityTap" | "onMagicTap" | "accessibilityIgnoresInvertColors" | "key" | "hitSlop" | "delayLongPress" | "delayPressIn" | "delayPressOut" | "disabled" | "onBlur" | "onFocus" | "pressRetentionOffset" | "touchSoundDisabled" | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | "status"> & {
276 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
277 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("../../types").$RemoveChildren<import("react").ComponentType<Pick<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
278 borderless?: boolean | undefined;
279 background?: Object | undefined;
280 centered?: boolean | undefined;
281 disabled?: boolean | undefined;
282 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
283 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
284 rippleColor?: string | undefined;
285 underlayColor?: string | undefined;
286 children: import("react").ReactNode;
287 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
288 theme: ReactNativePaper.Theme;
289 }, keyof import("react-native").TouchableWithoutFeedbackProps | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | keyof import("react").RefAttributes<import("react-native").TouchableWithoutFeedback>> & {
290 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
291 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
292 borderless?: boolean | undefined;
293 background?: Object | undefined;
294 centered?: boolean | undefined;
295 disabled?: boolean | undefined;
296 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
297 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
298 rippleColor?: string | undefined;
299 underlayColor?: string | undefined;
300 children: import("react").ReactNode;
301 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
302 theme: ReactNativePaper.Theme;
303 }> & {
304 ({ style, background: _background, borderless, disabled: disabledProp, rippleColor, underlayColor: _underlayColor, children, theme, ...rest }: import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
305 borderless?: boolean | undefined;
306 background?: Object | undefined;
307 centered?: boolean | undefined;
308 disabled?: boolean | undefined;
309 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
310 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
311 rippleColor?: string | undefined;
312 underlayColor?: string | undefined;
313 children: import("react").ReactNode;
314 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
315 theme: ReactNativePaper.Theme;
316 }): JSX.Element;
317 supported: boolean;
318 }, {}>> & {
319 status: "checked" | "unchecked" | "indeterminate";
320 disabled?: boolean | undefined;
321 onPress?: (() => void) | undefined;
322 color?: string | undefined;
323 theme: ReactNativePaper.Theme;
324 testID?: string | undefined;
325 }> & {
326 ({ status, disabled, onPress, theme, testID, ...rest }: import("../../types").$RemoveChildren<import("react").ComponentType<Pick<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
327 borderless?: boolean | undefined;
328 background?: Object | undefined;
329 centered?: boolean | undefined;
330 disabled?: boolean | undefined;
331 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
332 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
333 rippleColor?: string | undefined;
334 underlayColor?: string | undefined;
335 children: import("react").ReactNode;
336 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
337 theme: ReactNativePaper.Theme;
338 }, keyof import("react-native").TouchableWithoutFeedbackProps | "background" | "borderless" | "rippleColor" | "underlayColor" | "centered" | keyof import("react").RefAttributes<import("react-native").TouchableWithoutFeedback>> & {
339 theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
340 }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<import("react").ComponentType<import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
341 borderless?: boolean | undefined;
342 background?: Object | undefined;
343 centered?: boolean | undefined;
344 disabled?: boolean | undefined;
345 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
346 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
347 rippleColor?: string | undefined;
348 underlayColor?: string | undefined;
349 children: import("react").ReactNode;
350 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
351 theme: ReactNativePaper.Theme;
352 }> & {
353 ({ style, background: _background, borderless, disabled: disabledProp, rippleColor, underlayColor: _underlayColor, children, theme, ...rest }: import("react-native").TouchableWithoutFeedbackProps & import("react").RefAttributes<import("react-native").TouchableWithoutFeedback> & {
354 borderless?: boolean | undefined;
355 background?: Object | undefined;
356 centered?: boolean | undefined;
357 disabled?: boolean | undefined;
358 onPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
359 onLongPress?: ((e: import("react-native").GestureResponderEvent) => void) | undefined;
360 rippleColor?: string | undefined;
361 underlayColor?: string | undefined;
362 children: import("react").ReactNode;
363 style?: import("react-native").StyleProp<import("react-native").ViewStyle>;
364 theme: ReactNativePaper.Theme;
365 }): JSX.Element;
366 supported: boolean;
367 }, {}>> & {
368 status: "checked" | "unchecked" | "indeterminate";
369 disabled?: boolean | undefined;
370 onPress?: (() => void) | undefined;
371 color?: string | undefined;
372 theme: ReactNativePaper.Theme;
373 testID?: string | undefined;
374 }): JSX.Element;
375 displayName: string;
376 }, {}>;
377};
378export default Checkbox;
379
\No newline at end of file