/*! * @license * Copyright Squiz Australia Pty Ltd. All Rights Reserved. */ import { ListObjectsV2CommandOutput, S3Client } from '@aws-sdk/client-s3'; import { S3RepositoryBase } from './S3RepositoryBase'; /** * Repository class for interacting with the job uploads S3 bucket. * @export * @class JobUploadsRepository */ export declare class JobUploadsRepository extends S3RepositoryBase { protected s3Client: S3Client; constructor(s3Client: S3Client, bucketName: string); listByTenant(tenant: string, continuationToken?: string): Promise; }