import React from 'react';
import { ChatTheme } from '../../../types.mjs';
import { Message } from 'softchatjs-core';
import 'react-native';

type MessageOptionsProps = {
    recipientId: string;
    message: Message | null;
    isMessageOwner: boolean;
    onReply: () => void;
    onStartEditing: () => void;
    theme: ChatTheme | undefined;
    openEmojiList: () => void;
};
declare const MessageOptions: React.ForwardRefExoticComponent<MessageOptionsProps & React.RefAttributes<unknown>>;

export { MessageOptions, MessageOptions as default };
