type JSON = string | number | boolean | Array | Record; export declare function serialiseJSON(v: JSON): string; export declare function deserialiseJSON(v: string): JSON; export declare function isJsonNull(v: JSON): boolean; export {};