/** * `opensip-tools graph lookup ` — read-only catalog query. * * Loads the persisted catalog from the datastore and prints every * FunctionOccurrence whose `simpleName` matches ``. Companion to * the file-level symbol lookup that codeindex exposes; ours operates * on functions and uses the existing catalog as the source of truth. * * If no catalog has been built yet, exits with CONFIGURATION_ERROR and * a clear "run `opensip-tools graph` first" message — this command * never triggers an analysis run. */ import type { ToolCliContext } from '@opensip-tools/core'; export interface LookupCommandOptions { readonly name: string; readonly json?: boolean; } export declare function executeLookup(opts: LookupCommandOptions, cli: ToolCliContext): Promise; //# sourceMappingURL=lookup.d.ts.map