softchatjs-react-native
Version:
React native UI SDK for softchatjs-core. Create a free account at: https://www.softchatjs.com
18 lines (15 loc) • 476 B
TypeScript
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 };