import React, { PropsWithChildren } from 'react'; import type { UserResponse } from 'open-chat-js'; import type { DefaultStreamChatGenerics } from '../../../../types/types'; export type MentionProps = PropsWithChildren<{ node: { mentionedUser: UserResponse; }; }>; export declare const Mention: ({ children, node: { mentionedUser }, }: MentionProps) => React.JSX.Element; //# sourceMappingURL=Mention.d.ts.map