/** S3™ compatible credentials with secret */
export interface S3CredentialsWithSecret {
    /** S3™ compatible access key */
    access: string;
    /** S3™ compatible access key secret */
    secret: string;
    /** Tenant id */
    tenantId: string;
    /** User id */
    userId: string;
}
//# sourceMappingURL=S3CredentialsWithSecret.d.ts.map