import type { SnapshotResult, SnapshotOptions } from '../types.js'; /** * Take an AI-readable snapshot using Playwright's _snapshotForAI. * This is the primary snapshot method — uses Playwright's built-in AI mode. */ export declare function snapshotAi(opts: { cdpUrl: string; targetId?: string; maxChars?: number; timeoutMs?: number; options?: SnapshotOptions; }): Promise;