import { Props } from './types'; /** * Список кешей для конкретного API метода */ export declare const cacheByMethod: Map>; /** * Сброс кеша конкретного API метода */ export declare const clearCache: (apiPath: Api.PathAbstract) => void; export declare const genCacheKey: (api: NonNullable) => string; export declare const getCache: (cacheKey: string, apiPath: Api.PathAbstract) => any; export declare const setCache: (cacheKey: string, apiPath: Api.PathAbstract, data: any) => void;