import { type UseStorageValueOptions, type UseStorageValueResult } from '../useStorageValue/index.js'; type UseSessionStorageValue = (key: string, options?: UseStorageValueOptions) => UseStorageValueResult; export declare const useSessionStorageValue: UseSessionStorageValue; export {};