/** * Typesense API * An open source search engine for building delightful search experiences. * * The version of the OpenAPI document: 30.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { SearchResultHit } from './SearchResultHit.js'; /** * * @export * @interface SearchGroupedHit */ export interface SearchGroupedHit { /** * * @type {number} * @memberof SearchGroupedHit */ found?: number; /** * * @type {Array} * @memberof SearchGroupedHit */ groupKey: Array; /** * The documents that matched the search query * @type {Array} * @memberof SearchGroupedHit */ hits: Array; } /** * Check if a given object implements the SearchGroupedHit interface. */ export declare function instanceOfSearchGroupedHit(value: object): value is SearchGroupedHit; export declare function SearchGroupedHitFromJSON(json: any): SearchGroupedHit; export declare function SearchGroupedHitFromJSONTyped(json: any, ignoreDiscriminator: boolean): SearchGroupedHit; export declare function SearchGroupedHitToJSON(json: any): SearchGroupedHit; export declare function SearchGroupedHitToJSONTyped(value?: SearchGroupedHit | null, ignoreDiscriminator?: boolean): any;