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