import * as ts from 'typescript'; export declare type PropertyLike = ts.PropertyDeclaration | ts.PropertySignature | ts.MethodSignature; export declare function isPropertyLike(prop: ts.Node): prop is PropertyLike;