export declare class JSONConverter { #private; constructor(options?: { normalizeKey?: (k: string) => string; transformKey?: (k: string) => string; transformValue?: (v: any) => any; }); convert(input: any, cache?: Map): any; }