/** * 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 { SynonymItemSchema } from './SynonymItemSchema.js'; /** * * @export * @interface SynonymSetCreateSchema */ export interface SynonymSetCreateSchema { /** * Array of synonym items * @type {Array} * @memberof SynonymSetCreateSchema */ items: Array; } /** * Check if a given object implements the SynonymSetCreateSchema interface. */ export declare function instanceOfSynonymSetCreateSchema(value: object): value is SynonymSetCreateSchema; export declare function SynonymSetCreateSchemaFromJSON(json: any): SynonymSetCreateSchema; export declare function SynonymSetCreateSchemaFromJSONTyped(json: any, ignoreDiscriminator: boolean): SynonymSetCreateSchema; export declare function SynonymSetCreateSchemaToJSON(json: any): SynonymSetCreateSchema; export declare function SynonymSetCreateSchemaToJSONTyped(value?: SynonymSetCreateSchema | null, ignoreDiscriminator?: boolean): any;