import { type SourceFile } from 'ts-morph'; import type { TransformError, TransformMode, TransformWarning } from '../types.js'; /** * Result of transforming BDD expect calls in a file. */ interface BddTransformResult { errors: TransformError[]; transformCount: number; warnings: TransformWarning[]; } /** * Transform Chai BDD expect() calls to bupkis syntax. * * @function * @param sourceFile - The source file to transform * @param mode - How to handle unsupported matchers * @returns Transform results including counts, warnings, and errors */ export declare const transformBddExpectCalls: (sourceFile: SourceFile, mode: TransformMode) => BddTransformResult; export {}; //# sourceMappingURL=bdd-transformer.d.ts.map