declare type Value = string | null; export declare const useSessionStorage: (key: string) => { readonly value: Value; readonly setValue: (newValue: Value | ((current: Value) => Value)) => void; }; export {}; //# sourceMappingURL=useSessionStorage.d.ts.map