import { AstBlock } from './ast-block'; import { PropertyAccessExpression } from 'typescript'; import { AstValue } from './ast-value'; import { AstNode } from './ast-node'; export declare class AstPropertyAccessExpression implements AstNode { private block; node: PropertyAccessExpression; constructor(block: AstBlock, node: PropertyAccessExpression); get source(): AstValue; get name(): string; get value(): AstValue; }