import { Organization } from '../auth/entities/organization.entity'; import { User } from '../auth/entities/user.entity'; export declare const ObjectStorageObjectStatuses: readonly ["pending", "processing", "ready"]; export type ObjectStorageObjectStatus = typeof ObjectStorageObjectStatuses[number]; export declare class ObjectStorageObject { id: string; organization: Organization; externalId?: string; key: string; cdnUrl: string; contentLength: number; contentType: string; status: ObjectStorageObjectStatus; uploadedBy?: User; }