import type { SuggestedTerms } from './SuggestedTerms'; import type { SuggestedPhrase } from './SuggestedPhrase'; /** * @type Suggestion: Document representing a suggestion. * * @property suggestedPhrases: A list of suggested phrases. This list can be empty. * * @property suggestedTerms: A list of suggested terms. This list can be empty. * */ export type Suggestion = { suggestedPhrases?: Array; suggestedTerms: Array; } & { [key: string]: any; };