import type { IContext } from "../type/i_context.js"; import type { IMatcher } from "../type/i_matcher.js"; /** * The match algorithm * * The context matches if: * - At least one matching attribute is defined; and * - Every defined attribute matches the context. * * @param matcher The matcher to evaluate * @param context The context in which the matcher is evaluated * @returns True if the context matches, false otherwise */ export declare function match(matcher: IMatcher, context: IContext): boolean; //# sourceMappingURL=match.d.ts.map