import type React from 'react'; import type { LocalMessage, UserResponse } from 'stream-chat'; export type OnMentionAction = (event: React.BaseSyntheticEvent, /** * @deprecated Use the third `message` argument to access mention metadata instead. * FIXME: Remove this argument in the next major release. */ user?: UserResponse, message?: LocalMessage) => void; export declare const useMentionsHandlers: (onMentionsHover?: OnMentionAction, onMentionsClick?: OnMentionAction) => (event: React.BaseSyntheticEvent, mentioned_users: UserResponse[], message?: LocalMessage) => void; //# sourceMappingURL=useMentionsHandlers.d.ts.map