/** * 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 SharingFilters: { readonly OnlyMe: "onlyMe"; readonly MyContent: "myContent"; readonly Published: "published"; readonly Shared: "shared"; readonly SharedWithMe: "sharedWithMe"; readonly SharedWithMeDirectly: "sharedWithMeDirectly"; }; export type SharingFilters = typeof SharingFilters[keyof typeof SharingFilters]; export declare function instanceOfSharingFilters(value: any): boolean; export declare function SharingFiltersFromJSON(json: any): SharingFilters; export declare function SharingFiltersFromJSONTyped(json: any, ignoreDiscriminator: boolean): SharingFilters; export declare function SharingFiltersToJSON(value?: SharingFilters | null): any; export declare function SharingFiltersToJSONTyped(value: any, ignoreDiscriminator: boolean): SharingFilters;