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

type MediaOptionsProps = {
    recipientId: string;
    chatUserId: string;
    activeQuote: Message | null;
    clearActiveQuote: () => void;
    conversationId: string | undefined;
};
declare const MediaOptions: React.ForwardRefExoticComponent<MediaOptionsProps & React.RefAttributes<unknown>>;

export { MediaOptions, MediaOptions as default };
