import type { PropsWithChildren } from 'react'; import React from 'react'; import type { ViewStyle } from 'react-native'; type Props = PropsWithChildren<{ name: string; style?: ViewStyle; }>; declare const ViewWrapper: ({ name, style, children }: Props) => React.JSX.Element; export default ViewWrapper; //# sourceMappingURL=ViewWrapper.d.ts.map