/** * Exploration engine — automatically navigates an app, building a navigation graph. * * Supports BFS, DFS, and smart strategies for screen discovery. * Uses screen fingerprinting to detect duplicate screens. * Enforces blocklist for destructive actions. */ import type { ToolContext } from "../tools/context.js"; import type { Platform } from "../device-manager.js"; import type { ExplorationConfig, ExplorationResult } from "./types.js"; /** * Run exploration with the configured strategy. */ export declare function explore(ctx: ToolContext, platform: Platform | string, config: ExplorationConfig): Promise; //# sourceMappingURL=explorer.d.ts.map