export type JsonValue = boolean | JsonValue[] | null | number | string | { [key: string]: JsonValue; }; export declare const jsonReplacer: (_key: number | string, value: JsonValue) => string | number | boolean | JsonValue[] | { [key: string]: JsonValue; } | null;