import type { Schema } from 'prosemirror-model'; import type { AppThunk } from '../../types'; import type { EmojiResult } from '../types'; export declare const startingSuggestions: { c: string; n: string; s: string; o: string; }[]; export declare function chooseSelection(result: EmojiResult): AppThunk; export declare function filterResults(schema: Schema, search: string, callback: (results: EmojiResult[]) => void): void;