/** * Serializes any JavaScript type to a string. If the * type is an object, first sortthe object by its keys. * * @param obj - JavaScript type to serialize. * @returns `obj` serialized to a string. */ export declare function serialize(obj: unknown): string;