1 | import * as React from 'react';
|
2 | declare type Props = {
|
3 | |
4 |
|
5 |
|
6 | status: 'checked' | 'unchecked' | 'indeterminate';
|
7 | |
8 |
|
9 |
|
10 | disabled?: boolean;
|
11 | |
12 |
|
13 |
|
14 | onPress?: () => void;
|
15 | |
16 |
|
17 |
|
18 | uncheckedColor?: string;
|
19 | |
20 |
|
21 |
|
22 | color?: string;
|
23 | |
24 |
|
25 |
|
26 | theme: ReactNativePaper.Theme;
|
27 | |
28 |
|
29 |
|
30 | testID?: string;
|
31 | };
|
32 | declare const _default: React.ComponentType<Pick<Props, "color" | "onPress" | "testID" | "disabled" | "status" | "uncheckedColor"> & {
|
33 | theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
|
34 | }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<Props> & ((props: Props) => JSX.Element), {}>;
|
35 | export default _default;
|
36 | declare const CheckboxWithTheme: React.ComponentType<Pick<Props, "color" | "onPress" | "testID" | "disabled" | "status" | "uncheckedColor"> & {
|
37 | theme?: import("@callstack/react-theme-provider").$DeepPartial<ReactNativePaper.Theme> | undefined;
|
38 | }> & import("@callstack/react-theme-provider/typings/hoist-non-react-statics").NonReactStatics<React.ComponentType<Props> & ((props: Props) => JSX.Element), {}>;
|
39 | export { CheckboxWithTheme as Checkbox };
|
40 |
|
\ | No newline at end of file |