import { Plugin } from 'webpack';
import { PluginHandle } from './PluginHandle';
export declare class Define extends PluginHandle {
    protected readonly definition: {};
    add(key: string, value: string | number | boolean): this;
    addEnv(envKey: string, value: string | number | boolean): this;
    collect(): Plugin[];
}
