import type { ModifyFn } from './types.js';
import type { Compiler, WebpackPluginInstance } from 'webpack';
export declare const PLUGIN_NAME = "modify-entrypoints";
export type ModifyEntryPointsOptions = {
    modify: ModifyFn;
};
export declare class ModifyEntryPoints implements WebpackPluginInstance {
    protected readonly options: ModifyEntryPointsOptions;
    constructor(options: ModifyEntryPointsOptions);
    apply(compiler: Compiler): void;
}
