import { Compiler, Loader, Plugin } from 'webpack';
import { Options } from './babel.multi.target.options';
export declare const BABEL_LOADER = "babel-loader";
export declare class BabelMultiTargetPlugin implements Plugin {
    private readonly options;
    private readonly targets;
    constructor(options?: Options);
    apply(compiler: Compiler): void;
    static loader(loader?: Loader): Loader;
}
