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