/** * The type of the resource. Possible values are ``folders``, ``items``, ``versions``. * @export * @enum {string} */ export declare const TypeEntity: { readonly Folders: "folders"; readonly Items: "items"; readonly Versions: "versions"; }; export type TypeEntity = typeof TypeEntity[keyof typeof TypeEntity];