/// import { ImageSourcePropType } from 'react-native'; import { TailwindFn } from 'twrnc'; import { Style } from 'twrnc/dist/esm/types'; declare type Props = { tw: TailwindFn; image: ImageSourcePropType; style?: Style; children?: JSX.Element | JSX.Element[]; bottomColor?: string; mask?: string; }; declare const BackgroundImage: ({ tw, image, children, bottomColor, mask, style, }: Props) => JSX.Element; export default BackgroundImage;