/** Single result from /api/facetdomainindex/suggest endpoint. */ export interface IFacetDomainSuggestionItem { /** Actual value. */ value: string; /** Value with marking of query. */ highlightedValue: string; /** Count of occurrences. */ count: number; /** Combined relevance score used for ordering. Derived from hit quality (coverage ratio and match position) and log-dampened popularity. Higher is better. */ score: number; } //# sourceMappingURL=IFacetDomainSuggestionItem.d.ts.map