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

type VideoViewProps = {
    conversationId?: string;
    clearActiveQuote?: () => void;
    activeQuote: Message | null;
    chatUserId: string;
    recipientId: string;
    media: Media;
    view?: boolean;
    onDelete?: () => void;
};
declare function VideoScreen(props: VideoViewProps): React.JSX.Element;

export { VideoScreen as default };
