export type JsonValue = undefined | number | string | boolean | null | JsonValue[] | { [key: string]: JsonValue; }; export declare function jsonClone(value: T): T; export declare function jsonMerge(object: any, anotherOject: any): JsonValue; export declare function jsonStableStrinfiy(object: any): string; export declare function jsonHash(object: any): string;