import type { ListAutocompletionConfig } from './list-autocompletion-extension.js'; import type { Suggestion } from '../autocompletion.extension.js'; export interface SuggestionData { suggestions: Suggestion[]; prefixRegex: RegExp; suggestionRegex: RegExp; } /** Creates suggestion data from suggestions. */ export declare function createSuggestionData(autocompletionList: ListAutocompletionConfig): Promise;