import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { FadeInImageProps } from './FadeInImage'; export interface ImageWithOverlayProps { imageProps: FadeInImageProps; overlay?: JSX.Element; style?: StyleProp; overlayPosition?: 'bottomCenter' | 'bottomLeft' | 'bottomRight' | 'center' | 'centerLeft' | 'centerRight' | 'topCenter' | 'topLeft' | 'topRight'; } export declare const ImageWithOverlay: React.MemoExoticComponent<(props: ImageWithOverlayProps) => JSX.Element>;