import { StorageProviderType } from '../domain/enum/storage-provider-type.enum'; import { ScanStatus } from '../domain/enum/scan-status.enum'; export declare abstract class StorageConnectionEntityBase { id: string; storageProviderConfigId: string; userId: string | null; libraryId: string | null; name: string; providerType: StorageProviderType; rootPath: string | null; isActive: boolean; lastScanStatus: ScanStatus; lastScanError: string | null; lastScanAt: Date | null; encryptedCredentials: string | null; createdAt: Date; updatedAt: Date; } //# sourceMappingURL=storage-connection.entity.base.d.ts.map