import { AstBlock } from './ast-block'; import { TypeAliasDeclaration } from 'typescript'; import { AstType } from './ast-type'; import { AstNode } from './ast-node'; export declare class AstTypeDeclaration implements AstNode { private block; node: TypeAliasDeclaration; constructor(block: AstBlock, node: TypeAliasDeclaration); get name(): string; get exported(): boolean; get type(): AstType | null; }