import { Target } from "../engine/createTarget"; import { UserAgentDataType } from "../sessionDb/userAgent"; import { EmulatorOptions } from "../runner/parseConfig"; import { Cookie } from "tough-cookie"; export declare function getBridgeClient(port: number): { getTarget: () => Promise; getUserAgentData: (input: { agent: EmulatorOptions["userAgent"] | undefined; platform: EmulatorOptions["platform"] | undefined; persistentSession: boolean; }) => Promise; connectionReleased: (target: Target) => Promise; getCookieJar: () => Promise; updateCookieJar: (cookies: Cookie[]) => Promise; };