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