/**
 * VMError.
 *
 * @class
 * @extends {Error}
 * @property {String} stack Call stack.
 * @property {String} message Error message.
 */
export declare class VMError extends Error {
    code?: string | undefined;
    constructor(message: string, code?: string | undefined);
}
