import { AbstractStartedContainer, GenericContainer, StartedTestContainer } from "testcontainers"; export declare class RabbitMQContainer extends GenericContainer { constructor(image: string); start(): Promise; } export declare class StartedRabbitMQContainer extends AbstractStartedContainer { constructor(startedTestContainer: StartedTestContainer); getAmqpUrl(): string; getAmqpsUrl(): string; }