export declare class ModuleScopePlugin { scopes: Array; allowedFiles: Set; allowedDirs: string[]; allowedPatterns: RegExp[]; relativeAllowedDirs: string[]; cache: Map; constructor({ scopes, allowedFiles, }: { scopes: Array; allowedFiles?: string[]; }); apply(resolver: any): void; }