import { TYPE_NAME, TFilterFunc } from './types'; export declare const mapperProperty: (key: string, type?: TYPE_NAME) => (target: Object, propertyKey: string | symbol) => void; export declare const deepMapperProperty: (key: string, Clazz: any) => (target: Object, propertyKey: string | symbol) => void; export declare const filterMapperProperty: (key: string, filter: TFilterFunc) => (target: Object, propertyKey: string | symbol) => void;