import { Node, PropertyDeclaration } from 'typescript'; import { WhereFn } from '../types'; export declare const findFirstPropertyDeclaration: (node: Node) => PropertyDeclaration | undefined; export declare const findLastPropertyDeclaration: (node: Node) => PropertyDeclaration | undefined; export declare const findClassPropertyDeclaration: (node: Node, { classId, propertyId }: { classId: string; propertyId: string; }, where?: WhereFn | undefined) => PropertyDeclaration | undefined; export declare const findPropertyDeclaration: (node: Node, propertyId: string, where?: WhereFn | undefined) => PropertyDeclaration | undefined;