import type { MatcherTransform } from '../types.js'; import { bddMatchers } from './bdd.js'; import { pluginMatchers } from './plugins.js'; import { tddMatchers } from './tdd.js'; export { bddMatchers, pluginMatchers, tddMatchers }; /** * All matchers combined (BDD + TDD + plugins). */ export declare const allMatchers: MatcherTransform[]; /** * Get a matcher transform by its Chai name (BDD chain, TDD method, or plugin). * * @function * @param chaiMatcher - The Chai matcher identifier * @returns The matcher transform or undefined if not found */ export declare const getMatcherTransform: (chaiMatcher: string) => MatcherTransform | undefined; /** * Check if a matcher is supported (BDD, TDD, or plugin). * * @function * @param chaiMatcher - The Chai matcher identifier * @returns True if the matcher is supported */ export declare const isMatcherSupported: (chaiMatcher: string) => boolean; //# sourceMappingURL=index.d.ts.map