import { VariableDeclaration as tsVariableDeclaration } from 'typescript'; import { NamedDeclaration } from './named_declaration'; export declare class VariableDeclaration extends NamedDeclaration { private type?; constructor(node: tsVariableDeclaration); }