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