export declare class StorageService {
    constructor();
    static get(index: any): any;
    static set(index: any, object: any): void;
    static getSession(index: any): any;
    static setSession(index: any, object: any): void;
    static getTemp(): any;
    static setTemp(object: any): void;
    static clearTemp(): void;
    static clear(): void;
    static APIMaps(): string;
}
