export declare function useSessionStorageState<T>(key: string, initialValue: T): [T, (value: T | ((prev: T) => T)) => void];
