import { type S3StorageConfig } from '../../config/config.js'; import { type PathBasedPersistenceAdapter } from '../PathBasedPersistenceAdapter.js'; export declare class S3PathBasedPersistenceAdapter implements PathBasedPersistenceAdapter { private readonly storageConfig; private readonly deleteData; private storageAuthAccountId; constructor(storageConfig: S3StorageConfig, deleteData: boolean); private getClient; writeFile(filePath: string, data: string | Buffer): Promise; writeWithOptimisticLock(filePath: string, data: string | Buffer, lockId: string): Promise; readFile(filePath: string): Promise; readFileWithHash(filePath: string): Promise<{ data: string; hash: string; } | undefined>; deleteFile(filePath: string): Promise; deleteDirectory(dirPath: string): Promise; listDirectory(dirPath: string): Promise; findWithPattern(baseDir: string, pathParts: string[], filename: string): Promise; } //# sourceMappingURL=S3PathBasedPersistenceAdapter.d.ts.map