import { ICacheService } from "../services/cache"; export declare function useStorage(storageKey: string, cacheService?: ICacheService): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void; export declare function queueRequest(methodKey: string): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void; export declare function runWithCache(storageKey: string, cacheService?: ICacheService): (target: any, propertyKey: string, descriptor: PropertyDescriptor) => void;