import type { Editor } from '@tiptap/core'; interface EmojiItem { name: string; emoji?: string; shortcodes: string[]; tags?: string[]; fallbackImage?: string; } interface Props { items: EmojiItem[]; command: (args: { name: string; }) => void; editor: Editor; } /** * [Go to docs](https://flowbite-svelte.com/docs/plugins/wysiwyg) * ## Type * Props * ## Props * @prop items: initialItems = [] * @prop command: initialCommand */ declare const EmojiList: import("svelte").Component void; updateCommand: (newCommand: (args: { name: string; }) => void) => void; onKeyDown: ({ event }: { event: KeyboardEvent; }) => boolean; }, "">; type EmojiList = ReturnType; export default EmojiList;