import { Plugin, Compiler } from 'webpack';
export interface PiletWebpackPluginOptions {
    variables?: Record<string, string>;
}
export declare class PiletWebpackPlugin implements Plugin {
    private piletPackage;
    private options;
    constructor(piletPackage: any, options?: PiletWebpackPluginOptions);
    apply(compiler: Compiler): void;
}
