import type { ScreenAnalysis, UiElement } from "../types.js"; /** * Format element for display */ export declare function formatElement(el: UiElement): string; /** * Format UI tree for display (simplified view) */ export declare function formatUiTree(elements: UiElement[], options?: { showAll?: boolean; maxElements?: number; compact?: boolean; }): string; /** * Format screen analysis as text */ export declare function formatScreenAnalysis(analysis: ScreenAnalysis): string; //# sourceMappingURL=full.d.ts.map