import type { GitClient } from "../ports/git.js"; import type { PathOps } from "../ports/paths.js"; import type { ReferenceCountResult } from "./structural-review.js"; export interface ImportReferenceImpactOptions { readonly cwd: string; readonly git: GitClient; readonly pathOps: PathOps; readonly symbolName: string; readonly filePath: string; readonly ref: string; } export declare function countNamedImportReferencesAtRef(opts: ImportReferenceImpactOptions): Promise; //# sourceMappingURL=import-reference-impact.d.ts.map