import type { Configuration } from '@openobserve/browser-core'; import type { Hooks } from '../hooks'; export declare const CI_VISIBILITY_TEST_ID_COOKIE_NAME = "datadog-ci-visibility-test-execution-id"; export interface CiTestWindow extends Window { Cypress?: { env: (key: string) => string | undefined; }; } export type CiVisibilityContext = ReturnType; export declare function startCiVisibilityContext(configuration: Configuration, hooks: Hooks, cookieObservable?: import("@openobserve/browser-core").Observable): { stop: () => void; };