import { AbstractStartedContainer, GenericContainer, type StartedTestContainer } from "testcontainers"; export declare class MinioContainer extends GenericContainer { private username; private password; constructor(image: string); withUsername(username: string): this; withPassword(password: string): this; start(): Promise; } export declare class StartedMinioContainer extends AbstractStartedContainer { private readonly username; private readonly password; constructor(startedTestContainer: StartedTestContainer, username: string, password: string); getPort(): number; getUiPort(): number; getUsername(): string; getPassword(): string; getConnectionUrl(): string; }