import type { Editor } from '@tiptap/core'; import type { SuggestionProps, SuggestionKeyDownProps } from '@tiptap/suggestion'; interface EmojiItem { name: string; emoji?: string; shortcodes: string[]; tags?: string[]; fallbackImage?: string; } declare const _default: { items: ({ editor, query }: { editor: Editor; query: string; }) => EmojiItem[]; render: () => { onStart: (props: SuggestionProps) => void; onUpdate: (props: SuggestionProps) => void; onKeyDown: (props: SuggestionKeyDownProps) => boolean; onExit: () => void; }; }; export default _default;