/** * 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 Kind: { readonly Default: "default"; readonly Image: "image"; readonly Document: "document"; readonly Folder: "folder"; readonly Bookmark: "bookmark"; readonly Highlight: "highlight"; readonly Notepad: "notepad"; readonly Canvas: "canvas"; readonly Video: "video"; readonly Audio: "audio"; readonly Email: "email"; readonly Person: "person"; readonly Voicenote: "voicenote"; }; export type Kind = typeof Kind[keyof typeof Kind]; export declare function instanceOfKind(value: any): boolean; export declare function KindFromJSON(json: any): Kind; export declare function KindFromJSONTyped(json: any, ignoreDiscriminator: boolean): Kind; export declare function KindToJSON(value?: Kind | null): any; export declare function KindToJSONTyped(value: any, ignoreDiscriminator: boolean): Kind;