/**
 * type 导入
 */
import { Compiler } from 'webpack/types';
import { IBizroadOptions, queueFormType } from './types';
declare class BizroadWebpackPlugin {
    options: IBizroadOptions;
    entryFilesPath: string[];
    links: queueFormType;
    constructor(options: IBizroadOptions);
    apply(compiler: Compiler): void;
    _handleEntryFilesPath(entryFilepath: string): boolean;
}
export { BizroadWebpackPlugin };
