import type { ToolResult } from "../types.js"; import type { ToolRunOptions } from "./tool-types.js"; export declare function discoverWebSurface(baseUrl: string, paths: readonly string[], options?: ToolRunOptions): Promise; export declare function enumerateApi(specUrl: string, options?: ToolRunOptions): Promise; export declare function compareAuthorizationContexts(url: string, contexts: readonly { label: string; headers: Record; }[], options?: ToolRunOptions): Promise;