import type { EnvironmentContext, JestEnvironmentConfig } from "@jest/environment"; import { TestEnvironment } from "jest-environment-node"; import type { FirestoreEmulatorEnvironmentConfig } from "../types"; export default class FirestoreEmulatorEnvironment extends TestEnvironment { private server; constructor(config: FirestoreEmulatorEnvironmentConfig & JestEnvironmentConfig, context: EnvironmentContext); setup(): Promise; teardown(): Promise; } //# sourceMappingURL=node.d.ts.map