/** * 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 FeaturePriority: { readonly low: "low"; readonly medium: "medium"; readonly high: "high"; readonly critical: "critical"; }; export type FeaturePriority = typeof FeaturePriority[keyof typeof FeaturePriority]; export declare function instanceOfFeaturePriority(value: any): boolean; export declare function FeaturePriorityFromJSON(json: any): FeaturePriority; export declare function FeaturePriorityFromJSONTyped(json: any, ignoreDiscriminator: boolean): FeaturePriority; export declare function FeaturePriorityToJSON(value?: FeaturePriority | null): any; export declare function FeaturePriorityToJSONTyped(value: any, ignoreDiscriminator: boolean): FeaturePriority;