/** * Fabric API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * 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 SubscriptionTier: { readonly Free: "free"; readonly DeveloperFree: "developer_free"; readonly Basic: "basic"; readonly Starter: "starter"; readonly Pro: "pro"; readonly Max: "max"; readonly Lifetime: "lifetime"; readonly Team: "team"; readonly DeveloperScale: "developer_scale"; }; export type SubscriptionTier = typeof SubscriptionTier[keyof typeof SubscriptionTier]; export declare function instanceOfSubscriptionTier(value: any): boolean; export declare function SubscriptionTierFromJSON(json: any): SubscriptionTier; export declare function SubscriptionTierFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionTier; export declare function SubscriptionTierToJSON(value?: SubscriptionTier | null): any; export declare function SubscriptionTierToJSONTyped(value: any, ignoreDiscriminator: boolean): SubscriptionTier;