import type { StorageUtils } from '@getpara/core-sdk'; /** * Implements `StorageUtils` * @internal */ export declare class ServerLocalStorage implements StorageUtils { private localStorage; get: (key: string) => string | null; set: (key: string, value: string) => void; removeItem: (key: string) => void; clear: (prefix: string) => void; }