/** * 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 AgentType: { readonly BASELINE: "BASELINE"; readonly CUSTOM: "CUSTOM"; }; export type AgentType = typeof AgentType[keyof typeof AgentType]; export declare function instanceOfAgentType(value: any): boolean; export declare function AgentTypeFromJSON(json: any): AgentType; export declare function AgentTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): AgentType; export declare function AgentTypeToJSON(value?: AgentType | null): any; export declare function AgentTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): AgentType;