import * as ts from "typescript";
import { Node } from "./../common";
import { VariableDeclaration } from "./VariableDeclaration";
import { VariableDeclarationType } from "./VariableDeclarationType";
export declare class VariableDeclarationList extends Node<ts.VariableDeclarationList> {
    /**
     * Get the variable declarations.
     */
    getDeclarations(): VariableDeclaration[];
    /**
     * Gets the variable declaration type.
     */
    getDeclarationType(): VariableDeclarationType;
}
