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