/** * 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 StoreListingPermission: { readonly StorageRead: "STORAGE_READ"; readonly StorageWrite: "STORAGE_WRITE"; readonly AssistantAccess: "ASSISTANT_ACCESS"; }; export type StoreListingPermission = typeof StoreListingPermission[keyof typeof StoreListingPermission]; export declare function instanceOfStoreListingPermission(value: any): boolean; export declare function StoreListingPermissionFromJSON(json: any): StoreListingPermission; export declare function StoreListingPermissionFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreListingPermission; export declare function StoreListingPermissionToJSON(value?: StoreListingPermission | null): any; export declare function StoreListingPermissionToJSONTyped(value: any, ignoreDiscriminator: boolean): StoreListingPermission;