import React from 'react';
import { Media, Message } from 'softchatjs-core';

type ImagePreviewProps = {
    image: (Media & {
        base64?: string | undefined;
    }) | null;
    chatUserId: string;
    recipientId: string;
    activeQuote: Message | null;
    clearActiveQuote: () => void;
    viewOnly?: boolean;
    conversationId?: string | undefined;
};
declare function ImagePreview(props: ImagePreviewProps): React.JSX.Element;

export { ImagePreview as default };
