declare function isEqual(objectA: any, objectB: any): boolean;

declare const DSON: {
    parse: (str: string) => any;
    stringify: (any: any) => string;
    isEqual: typeof isEqual;
    clone: (value: any) => any;
};

export { DSON };
