/**
 *
 * @param object A complex JSON object.
 * @returns The object as a React State that is memonized and only changes if the stringified version of object changes.
 */
declare function useStringMemonization<T>(object: T): T | null;
export default useStringMemonization;
