import type { PropsWithChildren } from 'react';
import React from 'react';
import type { UserResponse } from 'stream-chat';
export type MentionProps = PropsWithChildren<{
    node: {
        mentionedUser: UserResponse;
    };
}>;
export declare const Mention: ({ children, node: { mentionedUser } }: MentionProps) => React.JSX.Element;
