import type { PropsWithChildren, ReactNode } from 'react'; import React from 'react'; import { ImageProps, ImageStyle, ViewStyle } from 'react-native'; type Props = PropsWithChildren<{ imageUrl: string; imageHeight?: number; headerComponent?: ReactNode; imageStyle?: ImageStyle; imageProps?: ImageProps; childrenStyle?: ViewStyle; }>; export default function ParallaxScrollView({ children, imageUrl, imageHeight, headerComponent, imageStyle, imageProps, childrenStyle, }: Props): React.JSX.Element; export {}; //# sourceMappingURL=ParallaxScrollView.d.ts.map