export default EmojiAutocomplete; type EmojiAutocomplete = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * Emoji autocomplete for the rich text editor. Typing a colon followed by one or more characters, * like `:smi`, brings up a list of matching emojis that can be inserted with a click or the Enter * key, the same way it works on GitHub, Slack and other apps. This wires the Lexical editor up to * ``, which owns the dropdown itself. */ declare const EmojiAutocomplete: import("svelte").Component, {}, "">;