import { AstValue } from './ast-value'; import { AstSourceFile } from './ast-source-file'; import { ImportDeclaration } from 'typescript'; import { AstType } from './ast-type'; export declare class AstImportDeclaration { private sourceFile; private node; constructor(sourceFile: AstSourceFile, node: ImportDeclaration); getValue(name: string): AstValue | null; getType(name: string): AstType | null; private exportsName; private getImportSourceFile; private get moduleSpecifier(); }