import type { ImageProps, ViewStyle, StyleProp, ImageStyle } from 'react-native'; import type { LightboxProps } from 'react-native-lightbox-v2'; import { IMessage } from './Models'; export interface MessageImageProps { currentMessage?: TMessage; containerStyle?: StyleProp; imageStyle?: StyleProp; imageProps?: Partial; lightboxProps?: LightboxProps; } declare const MessageImage: { ({ containerStyle, lightboxProps, imageProps, imageStyle, currentMessage, }: MessageImageProps): JSX.Element | null; defaultProps: { currentMessage: { image: null; }; containerStyle: {}; imageStyle: {}; imageProps: {}; lightboxProps: {}; }; }; export default MessageImage;