import { AbstractStartedContainer, StartedTestContainer } from "testcontainers";
import { AbstractGcloudEmulator } from "./abstract-gcloud-emulator";
export declare class FirestoreEmulatorContainer extends AbstractGcloudEmulator {
    constructor(image?: string);
    start(): Promise<StartedFirestoreEmulatorContainer>;
}
export declare class StartedFirestoreEmulatorContainer extends AbstractStartedContainer {
    constructor(startedTestContainer: StartedTestContainer);
    /**
     * @return a <code>host:port</code> pair corresponding to the address on which the emulator is
     * reachable from the test host machine.
     */
    getEmulatorEndpoint(): string;
}
