/// import PropTypes from 'prop-types'; import { ImageProps, ViewStyle, ImageStyle } from 'react-native'; import { IMessage } from './types'; interface MessageImageProps { currentMessage?: TMessage; containerStyle?: ViewStyle; imageStyle?: ImageStyle; imageProps?: Partial; lightboxProps?: object; } export default function MessageImage({ containerStyle, lightboxProps, imageProps, imageStyle, currentMessage, }: MessageImageProps): JSX.Element | null; export default namespace MessageImage { var defaultProps: { currentMessage: { image: null; }; containerStyle: {}; imageStyle: {}; imageProps: {}; lightboxProps: {}; }; var propTypes: { currentMessage: PropTypes.Requireable; containerStyle: PropTypes.Validator> | undefined; imageStyle: PropTypes.Requireable; imageProps: PropTypes.Requireable; lightboxProps: PropTypes.Requireable; }; } export {};