import React from 'react' import BackgroundHeaderFlatList, { BackgroundHeaderFlatListPropsBase } from './BackgroundHeaderFlatList' import ImageGradientBackground, { ImageGradientBackgroundProps } from './ImageGradientBackground' export type ImageGradientFlatListProps = BackgroundHeaderFlatListPropsBase & { backgroundProps?: ImageGradientBackgroundProps } function ImageGradientFlatList(props: ImageGradientFlatListProps) { return } export default ImageGradientFlatList