import type { MatcherTransform } from '../types.js'; /** * BDD-style Chai matchers (expect/should) and their bupkis equivalents. * * Chai's BDD API uses chainable properties like `.to.be.true` or * `.to.deep.equal(x)`. The `chaiMatcher` field represents the terminal part of * the chain that determines the assertion. * * @see {@link https://www.chaijs.com/api/bdd/} */ export declare const bddMatchers: MatcherTransform[]; /** * Get a BDD matcher transform by its Chai chain name. * * @function * @param chaiMatcher - The Chai matcher chain (e.g., 'equal', 'deep.equal', * 'be.true') * @returns The matcher transform or undefined if not found */ export declare const getBddMatcher: (chaiMatcher: string) => MatcherTransform | undefined; //# sourceMappingURL=bdd.d.ts.map