import { UseStorageOptions, UseStorageReturnValue } from '../use-local-storage/create-storage'; export declare function useSessionStorage(props: UseStorageOptions & { defaultValue: T; }): UseStorageReturnValue; export declare function useSessionStorage(props: UseStorageOptions): UseStorageReturnValue; interface ReadStorageValue { (options: UseStorageOptions & { defaultValue: T; }): T; (options: UseStorageOptions): T | undefined; } export declare const readSessionStorageValue: ReadStorageValue; export {};