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