import type { ResolveOptions } from "webpack"; type Resolver = NonNullable; declare namespace ResolveTypescriptPlugin { interface ResolveTypescriptPluginOptions { includeNodeModules?: boolean; } } declare class ResolveTypescriptPlugin { /** @deprecated For backwards compatibility with versions < v1.1.2. * Will be removed in v2.0. */ static default: typeof ResolveTypescriptPlugin; private static readonly defaultOptions; private readonly options; constructor(options?: ResolveTypescriptPlugin.ResolveTypescriptPluginOptions); apply(resolver: Resolver): void; } export = ResolveTypescriptPlugin;