import { AsyncSeriesBailHook } from "tapable"; type ResolveData = { context?: string; request: string; }; export declare class ContextModuleFactory { hooks: { beforeResolve: AsyncSeriesBailHook<[ResolveData], boolean | void>; afterResolve: AsyncSeriesBailHook<[ResolveData], boolean | void>; }; constructor(); } export {};