/** * Reads a page as a structured outline (cheap + reliable), the way * Playwright MCP / the accessibility tree works — NOT by sending pixels to a * vision model. Vision is a fallback for image-only pages (added later). * * Returns the interactive elements found, which the Screen Reader Agent then * enriches with MEANING and saves to the Zeta Core. */ export interface RawElement { role: string; label: string; selectorHint: string; expectedData?: string; } export declare function readScreen(page: any): Promise;