import type { ScanOptions } from "../types.js"; import type { MatcherContext } from "./matcherContext.js"; /** * Provides patching abilities for the given {@link MatcherContext}. * Directories should have the slash suffix. * * @since 0.6.0 */ export declare function matcherContextAddPath(ctx: MatcherContext, options: Required, entry: string): Promise; /** * Provides patching abilities for the given {@link MatcherContext}. * Directories should have the slash suffix. * * @since 0.6.0 */ export declare function matcherContextRemovePath(ctx: MatcherContext, options: Required, entry: string): Promise;