import { StitchAppClient } from "mongodb-stitch-browser-core";
import { App, AppResponse } from "mongodb-stitch-core-admin-client";
import { BaseStitchIntTestHarness } from "mongodb-stitch-core-testutils";
export default class BaseStitchBrowserIntTestHarness extends BaseStitchIntTestHarness {
    readonly clients: StitchAppClient[];
    setup(): Promise<void>;
    teardown(): Promise<void>;
    readonly stitchBaseUrl: string;
    getAppClient(app: AppResponse): StitchAppClient;
    registerAndLoginWithUserPass(app: App, client: StitchAppClient, email: string, pass: string): Promise<string>;
}
