import { StoreActionApi } from 'react-sweet-state'; import { RouteResource, RouteResourceDataForType } from '../../../../common/types'; import { State } from '../../types'; export declare const getExpiredResourceDataKeys: (routeResourceDataForType: RouteResourceDataForType, currentKey: string) => string[]; export declare const getLRUResourceKey: (maxCache: number, resourceDataForType: RouteResourceDataForType, currentKey: string) => null | string; export declare const validateLRUCache: (resource: RouteResource, key: string) => ({ getState, dispatch }: StoreActionApi) => void;