import type { MatcherTransform } from '../types.js'; /** * TDD-style Chai matchers (assert.xxx) and their bupkis equivalents. * * Chai's TDD API uses function calls like `assert.equal(actual, expected)`. The * `chaiMatcher` field represents the assertion method name after `assert.`. * * Note: Many assert methods have `notXxx` variants which are handled by the * transformer detecting the `not` prefix and setting negated=true. * * @see {@link https://www.chaijs.com/api/assert/} */ export declare const tddMatchers: MatcherTransform[]; /** * Get a TDD matcher transform by its Chai assertion name. * * @function * @param chaiMatcher - The Chai assertion method name (e.g., 'equal', 'isTrue') * @returns The matcher transform or undefined if not found */ export declare const getTddMatcher: (chaiMatcher: string) => MatcherTransform | undefined; //# sourceMappingURL=tdd.d.ts.map