import { type Compiler, type WebpackPluginInstance } from 'webpack';
import { type ProjectGraph } from '@nx/devkit';
export declare class GeneratePackageJsonPlugin implements WebpackPluginInstance {
    private readonly options;
    constructor(options: {
        skipPackageManager?: boolean;
        tsConfig: string;
        outputFileName: string;
        root: string;
        projectName: string;
        targetName: string;
        projectGraph: ProjectGraph;
        runtimeDependencies?: string[];
    });
    private resolveRuntimeDependencies;
    apply(compiler: Compiler): void;
}
//# sourceMappingURL=generate-package-json-plugin.d.ts.map