export type JsonReplacer = ((this: any, key: string, value: any) => any) | (number | string)[] | null;
export type JsonValue = string | boolean | number | JsonValue[] | null | JsonObject;
export type JsonObject = {
    [key: string]: JsonValue;
};
export declare function jsonClone(input: any, replacer?: JsonReplacer): JsonValue;
