/** * Decorates the page object with "pauseIf" and "pauseUnless" * methods for conditional pausing during browser automation. * * @example * ```ts * // Pause only when a condition is true * await page.pauseIf(process.env.DEBUG === 'true') * * // Pause unless a condition is true * await page.pauseUnless(isProduction) * ``` */ export declare const addPauseMethods: { /** * Adds pauseIf and pauseUnless methods to the page object * * @param page - The Playwright page instance to decorate */ page(page: import("playwright-core").Page): void; };