/** src: https://www.benmvp.com/blog/8-helpful-custom-react-hooks/
 * Generate Unique ID for both server and client side. Format: hhg-gen-id{number}
 * This depend on render order, assuming that the order is the same on server and client.
 */
export declare const useUniqueId: () => string;
