/** * Action hints generation: diff before/after UI state to suggest next actions. * Also provides a helper to fetch UI elements for the current platform. */ import { DeviceManager } from "../../device-manager.js"; import { UiElement } from "../../adb/ui-parser.js"; /** * Generate action hints by diffing before/after UI state. * * NOTE: This is a factory — it captures the deviceManager reference so callers * do not need to pass it on every invocation. */ export declare function createGenerateActionHints(deviceManager: DeviceManager, options?: { turbo?: boolean; }): (platform: string | undefined) => Promise; /** * Get UI elements for the current platform (helper for flow element checks). * * Factory that captures the deviceManager reference. */ export declare function createGetElementsForPlatform(deviceManager: DeviceManager, options?: { turbo?: boolean; }): (plat: string) => Promise; //# sourceMappingURL=hints.d.ts.map