export declare class PluginDef {
    type: string;
    name: string;
    tag: string;
    author: string;
    description: string;
    version: string;
    scriptWrapper: (_n: string) => string;
    constructor(def: any);
    toString(): string;
}
