import type { PerFilterSearchResult } from './per-filter-search-result.js'; /** * Representation of the 'SearchResults' schema. */ export type SearchResults = { /** * List of returned results. */ results: PerFilterSearchResult[]; } & Record; //# sourceMappingURL=search-results.d.ts.map