import { InjectionToken } from '@angular/core';
/**
 * Injection token for the global localStorage object.
 *
 * This token provides an abstraction over the window.localStorage object, allowing it to be injected
 * into Angular services or components. It utilizes the WINDOW injection token to access the localStorage
 * property of the global window object.
 */
export declare const LOCAL_STORAGE: InjectionToken<Storage>;
