/** * iOS-specific tree parsing: convert WDA accessibility tree to UiElement[]. */ import type { UiElement } from "../../adb/ui-parser.js"; /** * Convert iOS accessibility tree (from WDA) to UiElement[] for annotation. */ export declare function iosTreeToUiElements(tree: any, elements?: UiElement[], index?: { value: number; }): UiElement[]; export declare function formatIOSUITree(tree: any, indent?: number): string; //# sourceMappingURL=ios-helpers.d.ts.map