1 | import * as React from 'react';
|
2 | import { Animated, ViewProps, StyleProp, ViewStyle } from 'react-native';
|
3 | declare type Props = ViewProps & {
|
4 | style?: Animated.WithAnimatedValue<StyleProp<ViewStyle>>;
|
5 | children?: React.ReactNode;
|
6 | };
|
7 | export default function HeaderBackground({ style, ...rest }: Props): JSX.Element;
|
8 | export {};
|