import { Consent } from "./consent"; declare class LocalStorageProxy { private consent; constructor(consent: Consent); getItem(key: string): string | null; setItem(key: string, value: string): void; removeItem(key: string): void; } export { LocalStorageProxy };