/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export */ export declare const TextMatchesMode: { readonly NATURAL_LANGUAGE: "NATURAL_LANGUAGE"; readonly BOOLEAN: "BOOLEAN"; }; export type TextMatchesMode = typeof TextMatchesMode[keyof typeof TextMatchesMode]; export declare function instanceOfTextMatchesMode(value: any): boolean; export declare function TextMatchesModeFromJSON(json: any): TextMatchesMode; export declare function TextMatchesModeFromJSONTyped(json: any, ignoreDiscriminator: boolean): TextMatchesMode; export declare function TextMatchesModeToJSON(value?: TextMatchesMode | null): any; export declare function TextMatchesModeToJSONTyped(value: any, ignoreDiscriminator: boolean): TextMatchesMode;