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