import type { IContext } from "../type/i_context.js"; import type { IMatcher } from "../type/i_matcher.js"; /** * The vc matching algorithm * * The context matches if the matcher vc attribute contains a context vc. * * @param matcher The matcher to evaluate * @param context The context in which the matcher is evaluated * @returns True if there is a match, false otherwise */ export declare function matchVc(matcher: IMatcher, context: IContext): boolean; //# sourceMappingURL=match_vc.d.ts.map