import React, { PropsWithChildren } from 'react'; import type { UserResponse } from 'belo-js-sdk'; import type { DefaultBeloChatGenerics } 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