import type { Page } from "playwright-core"; type PageCdpSend = (method: string, params?: Record) => Promise; export declare function withPageScopedCdpClient(opts: { cdpUrl: string; page: Page; targetId?: string; fn: (send: PageCdpSend) => Promise; }): Promise; export {};