import { IPlugin } from "../"; export declare class PluginError extends Error { private _plugin; private _filePath; private _innerError; readonly plugin: IPlugin; readonly filePath: string; readonly innerError: any; constructor(plugin: IPlugin, filePath: string, innerError: any); toString(): string; }