export type GlobalVarValue = string | number | boolean; export declare const TASK_GET_GLOBAL_VAR = "jahiaCypressGetGlobalVar"; export declare const TASK_SET_GLOBAL_VAR = "jahiaCypressSetGlobalVar"; /** * Registers generic `cy.task()` handlers backed by a key/value store in the Node plugins * process. Unlike `Cypress.env()`, that process stays alive for the whole `cypress run`, so a * value set here survives across spec files instead of resetting on every spec's page reload. * Values are restricted to primitives (string/number/boolean) — no objects, arrays or functions. */ export declare const registerGlobalVarsTasks: (on: Cypress.PluginEvents) => void;