export declare type decoratorInput = { new (): any; } | string; export declare function mappable(type: decoratorInput): (target: Object, propertyKey: string | symbol) => void; export declare function getMappableProperties(target: Object): { [propKey: string]: decoratorInput; };