export const env: import("../types.js").RunnerEnv; /** * Playwright Test options * * @type {import('../types.js').RunnerOptions} */ export const options: import("../types.js").RunnerOptions; /** * Playwright Test mode */ export const mode: "main" | "worker" | "node"; /** * Playwright Test server url * * @type {string} */ export const server: string; export namespace context { function setOffline(offline: boolean): Promise; function grantPermissions(permissions: ReadonlyArray, options?: { origin?: string; }): Promise; function setGeolocation(geolocation: null | { latitude: number; longitude: number; accuracy?: number; }): Promise; } //# sourceMappingURL=index.d.ts.map