import React from 'react'; import { ImageProps, ViewStyle, StyleProp, ImageStyle, ImageURISource } from 'react-native'; import { IMessage } from './Models'; export interface MessageImageProps { currentMessage: TMessage; containerStyle?: StyleProp; imageSourceProps?: Partial; imageStyle?: StyleProp; imageProps?: Partial; } export declare function MessageImage({ containerStyle, imageProps, imageSourceProps, imageStyle, currentMessage, }: MessageImageProps): React.JSX.Element | null; //# sourceMappingURL=MessageImage.d.ts.map