import type { Config, Store } from './base'; import { IMidwayContainer } from '@midwayjs/core'; export interface RedisStore extends Store { readonly isCacheable: (value: unknown) => boolean; } export declare function createRedisStore(instanceName: string): (options: Config, container: IMidwayContainer) => Promise; //# sourceMappingURL=store.d.ts.map