/// <reference types="node" />
import vm from 'vm';
export declare class VMScript {
    private code;
    filename: string;
    private wrapped;
    private compiled?;
    constructor(code: string, filename?: string);
    wrap(prefix: string, postfix: string): this;
    compile(): vm.Script;
}
