/** * 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 PermissionRole: { readonly Owner: "owner"; readonly Viewer: "viewer"; readonly Editor: "editor"; readonly Commenter: "commenter"; }; export type PermissionRole = typeof PermissionRole[keyof typeof PermissionRole]; export declare function instanceOfPermissionRole(value: any): boolean; export declare function PermissionRoleFromJSON(json: any): PermissionRole; export declare function PermissionRoleFromJSONTyped(json: any, ignoreDiscriminator: boolean): PermissionRole; export declare function PermissionRoleToJSON(value?: PermissionRole | null): any; export declare function PermissionRoleToJSONTyped(value: any, ignoreDiscriminator: boolean): PermissionRole;