import { AstBlock } from './ast-block'; import { ParameterDeclaration } from 'typescript'; import { AstType } from './ast-type'; export declare class AstParameterDeclaration { private block; private node; constructor(block: AstBlock, node: ParameterDeclaration); get type(): AstType | null; get name(): string; }