/** * 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 { SynonymSetSchema } from './SynonymSetSchema.js'; /** * * @export * @interface SynonymSetsRetrieveSchema */ export interface SynonymSetsRetrieveSchema { /** * Array of synonym sets * @type {Array} * @memberof SynonymSetsRetrieveSchema */ synonymSets: Array; } /** * Check if a given object implements the SynonymSetsRetrieveSchema interface. */ export declare function instanceOfSynonymSetsRetrieveSchema(value: object): value is SynonymSetsRetrieveSchema; export declare function SynonymSetsRetrieveSchemaFromJSON(json: any): SynonymSetsRetrieveSchema; export declare function SynonymSetsRetrieveSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SynonymSetsRetrieveSchema; export declare function SynonymSetsRetrieveSchemaToJSON(json: any): SynonymSetsRetrieveSchema; export declare function SynonymSetsRetrieveSchemaToJSONTyped(value?: SynonymSetsRetrieveSchema | null, ignoreDiscriminator?: boolean): any;