/** * @public * @enum */ export declare const ItemType: { readonly FOLDER: "FOLDER"; readonly OBJECT: "OBJECT"; }; /** * @public */ export type ItemType = (typeof ItemType)[keyof typeof ItemType]; /** * @public * @enum */ export declare const StorageClass: { readonly TEMPORAL: "TEMPORAL"; }; /** * @public */ export type StorageClass = (typeof StorageClass)[keyof typeof StorageClass]; /** * @public * @enum */ export declare const UploadAvailability: { readonly STANDARD: "STANDARD"; readonly STREAMING: "STREAMING"; }; /** * @public */ export type UploadAvailability = (typeof UploadAvailability)[keyof typeof UploadAvailability];