UNPKG

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