import { HawkStorage } from '@hawk.so/core'; /** * {@link HawkStorage} implementation backed by the browser's {@linkcode localStorage}. */ export declare class HawkLocalStorage implements HawkStorage { /** @inheritDoc */ getItem(key: string): string | null; /** @inheritDoc */ setItem(key: string, value: string): void; /** @inheritDoc */ removeItem(key: string): void; }