import { type SourceFile } from 'ts-morph'; import type { TransformWarning } from '../types.js'; /** * Result of transforming imports. */ interface ImportTransformResult { /** Whether any imports were modified */ modified: boolean; /** Warnings about unrecognized plugins */ warnings: TransformWarning[]; } /** * Transform Chai imports to bupkis and remove plugin imports. * * @function * @param sourceFile - The source file to transform * @returns Whether any modifications were made and any warnings */ export declare const transformImports: (sourceFile: SourceFile) => ImportTransformResult; export {}; //# sourceMappingURL=import-transformer.d.ts.map