import { MockConfig } from '../types';
/**
 * The LocalStorageService is responsible for creating the local storage entry needed for the Spartacus Mock Server.
 */
export declare class LocalStorageService {
    protected config: MockConfig;
    constructor(config: MockConfig);
    /**
     * Update the local storage entry.
     * @param key
     * @param value
     */
    updateLocalStorage(key: string, value: any): void;
    /**
     * Create the local storage entries if they do not exist yet.
     * @param _config
     */
    private createLocalstorage;
}
