import React from 'react';
import type { IconProps } from '../../types/types';
import type { MessageContextValue } from '../../context/MessageContext';
export type MessageOptionsProps = Partial<Pick<MessageContextValue, 'handleOpenThread'>> & {
    ActionsIcon?: React.ComponentType<IconProps>;
    displayReplies?: boolean;
    ReactionIcon?: React.ComponentType<IconProps>;
    theme?: string;
    ThreadIcon?: React.ComponentType<IconProps>;
};
export declare const MessageOptions: (props: MessageOptionsProps) => React.JSX.Element | null;
