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