export class AnyOf extends BaseMatcher {
    /**
     *
     * @param {Matcher[]} matchers
     */
    constructor(matchers: Matcher<any>[]);
    matches(item: any, mismatch_description: any): boolean;
    describeTo(description: any): void;
    #private;
}
import { BaseMatcher } from "../BaseMatcher.js";
import { Matcher } from "../Matcher.js";
//# sourceMappingURL=AnyOf.d.ts.map