/**
* A hook that returns true if the component is mounted on the client (hydrated)
* and false when rendering on the server.
*
* @example
* ```jsx
* function Component() {
* const isHydrated = useIsHydrated()
*
* if (!isHydrated) {
* return
Loading...
* }
*
* return
Client rendered content
* }
* ```
* @returns boolean indicating if the component is hydrated
*/
declare function useIsHydrated(): boolean;
export { useIsHydrated };