interface SessionStorage { getItem: (key: string) => string; setItem: (key: string, value: string) => void; removeItem: (key: string) => void; clear: () => void; } declare const _default: () => SessionStorage; export default _default;