import type { PathPattern } from "./types"; /** * 判断当前路径是否命中白名单。 * 支持精确匹配、前缀匹配和正则匹配。 */ export declare function matchPath(urlOrPath: string, patterns: PathPattern[] | undefined): boolean; //# sourceMappingURL=matchPath.d.ts.map