/**
* Hook for managing URL hash state with SSR support
* @returns A tuple of [hash, setHash] where hash is the current URL hash (without '#') and setHash updates it
*/exportdeclarefunctionuseUrlHashState(): [string | null, (value: string | null, replace?: boolean) =>void];