import { BaseStorage } from './BaseStorage'; export type S3Config = { endpoint: string; bucket: string; download: string; credentials: { accessKey: string; secretKey: string; }; }; export declare class S3 extends BaseStorage { private readonly config; private readonly client; constructor(config: S3Config); upload(file: string): Promise; } //# sourceMappingURL=S3.d.ts.map