import { JsonPropertyOptions } from '../Interfaces/JsonPropertyOptions'; export declare class Reflection { static getMetadataKeys(target: any): any; static getPropertyKeys(target: any): any; static getPropertyType(target: any, key: string): any; static getJsonPropertyName(target: any, key: string): any; static setJsonPropertyName(name: string | undefined, target: any, key: string): void; static setJsonPropertyOptions(options: JsonPropertyOptions, target: any, key: string): void; static getJsonPropertyOptions(target: any, key: string): any; }