import type { SuggestionProps as TipTapSuggestionProps, SuggestionKeyDownProps } from '@tiptap/suggestion'; export declare const createMentionSuggestion: (mentions: string[]) => { items: ({ query }: { query: string; editor: import("@tiptap/core").Editor; }) => string[]; render: () => { onStart: (props: TipTapSuggestionProps) => void; onUpdate: (props: TipTapSuggestionProps) => void; onKeyDown: (props: SuggestionKeyDownProps) => boolean; onExit: () => void; }; };