/**
 * @author WMXPY
 * @namespace Operation_VariableDeclaration
 * @description Declaration
 */
import * as EST from "estree";
import { IScope, ITrace } from "../../declare/variable";
import { Sandbox } from "../../marked/sandbox";
import { DeclareVariableElement } from "./declare";
export declare const declareVariableStack: (this: Sandbox, node: EST.VariableDeclaration, scope: IScope, currentTrace: ITrace, nextTrace: ITrace) => Promise<DeclareVariableElement[]>;
