/** * A hook that synchronizes state with sessionStorage. * * Example: * const [sessionData, setSessionData] = useSessionStorage("data", {}); */ export declare function useSessionStorage(key: string, initialValue: T): [T, (value: T) => void];