1 | import * as React from 'react';
|
2 | import { View, ViewStyle, StyleProp } from 'react-native';
|
3 | declare type Props = React.ComponentPropsWithRef<typeof View> & {
|
4 | |
5 |
|
6 |
|
7 | title?: string;
|
8 | |
9 |
|
10 |
|
11 | children: React.ReactNode;
|
12 | style?: StyleProp<ViewStyle>;
|
13 | |
14 |
|
15 |
|
16 | theme: ReactNativePaper.Theme;
|
17 | };
|
18 | declare const _default: React.ComponentType<Pick<import("react-native").ViewProps & React.RefAttributes<View> & {
|
19 | |
20 |
|
21 |
|
22 | title?: string | undefined;
|
23 | |
24 |
|
25 |
|
26 | children: React.ReactNode;
|
27 | style?: StyleProp<ViewStyle>;
|
28 | |
29 |
|
30 |
|
31 | theme: ReactNativePaper.Theme;
|
32 | }, "title" | keyof import("react-native").ViewProps | keyof React.RefAttributes<View>> & {
|
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<import("react-native").ViewProps & React.RefAttributes<View> & {
|
35 | |
36 |
|
37 |
|
38 | title?: string | undefined;
|
39 | |
40 |
|
41 |
|
42 | children: React.ReactNode;
|
43 | style?: StyleProp<ViewStyle>;
|
44 | |
45 |
|
46 |
|
47 | theme: ReactNativePaper.Theme;
|
48 | }> & {
|
49 | ({ children, title, theme, style, ...rest }: Props): JSX.Element;
|
50 | displayName: string;
|
51 | }, {}>;
|
52 | export default _default;
|