import type { ConsoleMessage, PageError, NetworkRequest } from '../types.js'; export declare function getConsoleMessagesViaPlaywright(opts: { cdpUrl: string; targetId?: string; level?: string; clear?: boolean; }): Promise; export declare function getPageErrorsViaPlaywright(opts: { cdpUrl: string; targetId?: string; clear?: boolean; }): Promise<{ errors: PageError[]; }>; export declare function getNetworkRequestsViaPlaywright(opts: { cdpUrl: string; targetId?: string; filter?: string; clear?: boolean; }): Promise<{ requests: NetworkRequest[]; }>;