import { BacktracePluginOptions } from '@backtrace/sourcemap-tools';
import webpack, { WebpackPluginInstance } from 'webpack';
export declare class BacktracePlugin implements WebpackPluginInstance {
    readonly options?: BacktracePluginOptions | undefined;
    constructor(options?: BacktracePluginOptions | undefined);
    apply(compiler: webpack.Compiler): void;
}
