import { type Browser, type BrowserContext } from 'playwright'; import type { ContentCompleteness } from '../types.js'; export interface InstallStatus { installed: boolean; hint?: string; } export declare function detectPlaywrightInstall(): Promise; export declare function shouldEscalate(body: string): boolean; export declare function getDaemonBrowser(): Promise<{ browser: Browser; context: BrowserContext; }>; export declare function closeDaemonBrowser(): Promise; export declare function fetchWithPlaywright(url: string, opts?: { timeoutMs?: number; signal?: AbortSignal; }): Promise<{ html: string; text: string; completeness: ContentCompleteness; }>; //# sourceMappingURL=playwright-tier.d.ts.map