import * as React from 'react'; import { Animated, StyleProp, ViewProps, ViewStyle } from 'react-native'; type Props = Omit & { style?: Animated.WithAnimatedValue>; children?: React.ReactNode; }; export default function HeaderBackground({ style, ...rest }: Props): JSX.Element; export {}; //# sourceMappingURL=HeaderBackground.d.ts.map