import type { BrowserSessionSourceTypeValue, PlaywrightServiceAdditionalOptions, OsType } from "./types.js"; import type { TokenCredential } from "@azure/identity"; declare class PlaywrightServiceConfig { serviceOs: OsType; runId: string; connectTimeout: number; slowMo: number; exposeNetwork: string; runName: string; apiVersion: string; sourceType: BrowserSessionSourceTypeValue; private _serviceAuthType; credential?: TokenCredential; constructor(); static get instance(): PlaywrightServiceConfig; get serviceAuthType(): string; set serviceAuthType(value: string); initialize(): Promise; validateOptions: (options?: PlaywrightServiceAdditionalOptions) => void; setOptions: (options?: PlaywrightServiceAdditionalOptions, isGetConnectOptions?: boolean) => void; } export { PlaywrightServiceConfig }; //# sourceMappingURL=playwrightServiceConfig.d.ts.map