import type { ToolContext } from "../context.js"; import type { PrecisionSymbolMatch } from "./precision-match.js"; export interface CodeShowResolution { readonly layer: "commit_worldline" | "ref_view" | "workspace_overlay"; readonly source: "warp" | "live"; readonly resolvedRef?: string | undefined; readonly locations: PrecisionSymbolMatch[]; } export declare function resolveCodeShowLocations(ctx: ToolContext, input: { symbolName: string; targetPath?: string | undefined; ref?: string | undefined; allowWarp: boolean; }): Promise; //# sourceMappingURL=precision-show.d.ts.map