import type { InspectOutline } from "../evidence/inspect.js"; type InspectFormat = "json" | "text"; export declare const INSPECT_OUTLINE_JSON_SCHEMA_VERSION: "renma.inspect-outline.v1"; export declare const INSPECT_SLICE_JSON_SCHEMA_VERSION: "renma.inspect-slice.v1"; interface InspectOptions { format?: InspectFormat; lines?: string; } export declare function runInspectCommand(target: string, options?: InspectOptions): Promise; export declare function buildInspectOutline(target: string, options?: { repositoryMarkerSearchBoundary?: string; }): Promise; export {};