import type { CDPSession } from '../types.js'; export interface DiscoverOptions { timeoutMs?: number; filterPages?: boolean; } export declare function parseCDPResponse(raw: string): CDPSession[]; export declare function discoverSessions(cdpUrl: string, options?: DiscoverOptions): Promise; export declare function isCDPReachable(cdpUrl: string, timeoutMs?: number): Promise; //# sourceMappingURL=cdp-client.d.ts.map