import { AstNode } from "../AstNode";
import { Statement } from "./Statement";
export declare class VariableDeclarationStatement extends Statement {
    type: string;
    code: any;
    declarationKeyWord: string;
    declarations: AstNode[];
    constructor(currentToken: any);
}
