import { PropertyMetadata } from './PropertyMetadata'; export declare class PropertyRegistry { static properties: Map; static registerObjectProperty(type: Function, klassProperty: string, nameOrOptions?: string): void; static registerInherited(type: Function, inherited: Function): void; static findProperties(type: Function): PropertyMetadata[]; }