UNPKG

@mui/internal-docs-infra

Version:

MUI Infra - internal documentation creation tools.

5 lines 282 B
/** * 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];