import React from 'react';
import type { LocalMessage } from 'stream-chat';
export interface MessageErrorTextProps {
    message: LocalMessage;
    theme: string;
}
export declare function MessageErrorText({ message, theme }: MessageErrorTextProps): React.JSX.Element | null;
