export declare function matchesAnyGlob(path: string, globs: readonly string[]): string | null; export interface ForbiddenPathHit { readonly path: string; readonly matchedGlob: string; } export declare function findForbiddenChanges(input: { readonly changedPaths: readonly string[]; readonly forbiddenPaths: readonly string[]; }): readonly ForbiddenPathHit[]; //# sourceMappingURL=forbidden-paths.d.ts.map