import type { CapturedAgentRequest, PageRequestDiscovery, ProjectPageCandidate, SerializedCookie } from "./types.js"; export declare function summarizeCapturedRequest(request: CapturedAgentRequest): string; export declare function collectProjectPageCandidates(options: { page: import("playwright").Page; projectOrigin: string; }): Promise; export declare function discoverAgentRequestFromContext(options: { cookies: SerializedCookie[]; headed?: boolean; objective?: string; projectOrigin: string; }): Promise<{ resolved: false; candidatePages: ProjectPageCandidate[]; reason: string; } | ({ resolved: true; } & PageRequestDiscovery)>; export declare function discoverAgentRequest(options: { cookies: SerializedCookie[]; headed?: boolean; objective?: string; pageUrl: string; projectOrigin: string; }): Promise; //# sourceMappingURL=agent-browser-discovery.d.ts.map