import { type MigrationManifest, type MigrationMoveStatus } from "./migration-manifest.js"; export interface DeprecatedImportFinding { file: string; line: number; from: string; to: string[]; symbols: string[]; status: MigrationMoveStatus; } export interface ScanDeprecatedImportsOptions { root: string; manifests?: MigrationManifest[]; } export declare function scanDeprecatedImports(options: ScanDeprecatedImportsOptions): DeprecatedImportFinding[]; //# sourceMappingURL=deprecated-imports.d.ts.map