import { AstParameterDeclaration } from './ast-parameter-declaration'; import { AstBlock } from './ast-block'; import { MethodDeclaration } from 'typescript'; import { AstNode } from './ast-node'; export declare class AstMethodDeclaration implements AstNode { private block; node: MethodDeclaration; constructor(block: AstBlock, node: MethodDeclaration); get name(): string; get parameters(): Generator; private getParameters; }