import { PropertyFactoryOptions } from "../interfaces/factory-options"; import { Constructible, KeyMap } from "../interfaces/global"; import { Property } from "./property"; export declare class PropertyFactory { propertyMap: KeyMap>; private options; constructor(opts?: PropertyFactoryOptions); getProperty(type: string): Property | undefined; }