export declare const localStorageMock: {
    store: {
        [key: string]: string;
    };
    getItem: (key: string) => string;
    setItem: (key: string, value: any) => void;
    clear: () => void;
    removeItem: (key: string) => void;
};
