import { AbstractStartedContainer, GenericContainer, StartedTestContainer } from "testcontainers";
export declare class ChromaDBContainer extends GenericContainer {
    constructor(image: string);
    start(): Promise<StartedChromaDBContainer>;
}
export declare class StartedChromaDBContainer extends AbstractStartedContainer {
    private readonly host;
    constructor(startedTestContainer: StartedTestContainer);
    getHttpUrl(): string;
}
