import { ExecutorContext } from '@nx/devkit';
import { type Compiler, type RspackPluginInstance } from '@rspack/core';
export declare class GeneratePackageJsonPlugin implements RspackPluginInstance {
    private readonly options;
    private readonly context;
    private readonly projectGraph;
    constructor(options: {
        tsConfig: string;
        outputFileName: string;
    }, context: ExecutorContext);
    apply(compiler: Compiler): void;
}
