/**
 * 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
 */
export declare function useUrlHashState(): [string | null, (value: string | null, replace?: boolean) => void];