import * as NodeTypes from "../nodeTypes"; import { Interpreter } from "../types"; export declare const BlockStatement: Interpreter; export declare const Program: Interpreter; export declare const VariableDeclaration: Interpreter; export declare const ObjectPatternTarget = "[[ObjectPatternTarget]]"; export declare const VariableDeclarator: Interpreter; export declare const ObjectPattern: Interpreter; export declare const AssignmentPattern: Interpreter; export declare const IfStatement: Interpreter; export declare const ExpressionStatement: Interpreter; export declare const ExceptionName = "[[CatchClauseException]]"; export declare const TryStatement: Interpreter; export declare const ThrowStatement: Interpreter; export declare const CatchClause: Interpreter; export declare const ReturnStatement: Interpreter; export declare const BreakStatement: Interpreter; export declare const FunctionDeclaration: Interpreter; export declare const ForInStatement: Interpreter; export declare const WhileStatement: Interpreter; export declare const DoWhileStatement: Interpreter; export declare const ForStatement: Interpreter; export declare const ContinueStatement: Interpreter; export declare const ForOfStatement: Interpreter; export declare const EmptyStatement: Interpreter; export declare const createClass: Interpreter; export declare const ClassDeclaration: Interpreter; export declare const ClassBody: Interpreter; export declare const MethodDefinition: Interpreter; export declare const DebuggerStatement: Interpreter; export declare const SwitchStatement: Interpreter; declare const _default: { BlockStatement: Interpreter; Program: Interpreter; VariableDeclarator: Interpreter; VariableDeclaration: Interpreter; ObjectPattern: Interpreter; AssignmentPattern: Interpreter; IfStatement: Interpreter; ExpressionStatement: Interpreter; TryStatement: Interpreter; ThrowStatement: Interpreter; CatchClause: Interpreter; ReturnStatement: Interpreter; BreakStatement: Interpreter; FunctionDeclaration: Interpreter; ForInStatement: Interpreter; ForStatement: Interpreter; ForOfStatement: Interpreter; WhileStatement: Interpreter; ContinueStatement: Interpreter; EmptyStatement: Interpreter; ClassDeclaration: Interpreter; ClassBody: Interpreter; MethodDefinition: Interpreter; DebuggerStatement: Interpreter; SwitchStatement: Interpreter; DoWhileStatement: Interpreter; }; export default _default;