import DomainConfig = require("../models/domain-config"); import { S3Client } from "@aws-sdk/client-s3"; declare class S3Wrapper { s3: S3Client; constructor(credentials?: any); /** * * Checks whether the Mutual TLS certificate exists in S3 or not */ assertTlsCertObjectExists(domain: DomainConfig): Promise; /** * * Extracts Bucket and Key from the given s3 uri */ private static extractBucketAndKey; } export = S3Wrapper;