import PropTypes from 'prop-types'; import { ImageProps, ViewStyle, StyleProp, ImageStyle } from 'react-native'; import { LightboxProps } from 'react-native-lightbox-v2'; import { IMessage } from './Models'; export interface MessageImageProps { currentMessage?: TMessage; containerStyle?: StyleProp; imageStyle?: StyleProp; imageProps?: Partial; lightboxProps?: LightboxProps; } export declare function MessageImage({ containerStyle, lightboxProps, imageProps, imageStyle, currentMessage, }: MessageImageProps): JSX.Element | null; export declare namespace MessageImage { var propTypes: { currentMessage: PropTypes.Requireable; containerStyle: PropTypes.Requireable; imageStyle: PropTypes.Requireable; imageProps: PropTypes.Requireable; lightboxProps: PropTypes.Requireable; }; }