import { MessageFormatter, ReceivedChatMessage } from '@livekit/components-react';
import * as React from 'react';
export declare const useChatMessage: (entry: ReceivedChatMessage, messageFormatter?: MessageFormatter) => {
    message: React.ReactNode;
    hasBeenEdited: boolean;
    time: Date;
    locale: string;
    name: string | undefined;
};
