declare class JsonHandler {
stringify(value: any, replacer?: (this: any, key: string, value: any) => any | (number | string)[] | null, space?: string | number): string;
parse(text: string, reviver?: (this: any, key: string, value: any) => any): any;
}
export { JsonHandler };