/** *

An autocomplete suggestion that matches the query string specified in a SuggestRequest.

*/ export interface _SuggestionMatch { /** *

The string that matches the query string specified in the SuggestRequest.

*/ suggestion?: string; /** *

The relevance score of a suggested match.

*/ score?: number; /** *

The document ID of the suggested document.

*/ id?: string; } export declare type _UnmarshalledSuggestionMatch = _SuggestionMatch;