import * as React from 'react'; import { Animated } from 'react-native'; export declare type Params = { translateY: Animated.AnimatedInterpolation; opacity: Animated.AnimatedInterpolation; backgroundColor: string | null; collapsedColor: string | null; elevation?: number; headerBackground?: React.ReactNode; }; declare const createHeaderBackground: ({ translateY, opacity, backgroundColor, collapsedColor, elevation, headerBackground, }: Params) => () => JSX.Element; export { createHeaderBackground };