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<RedisStore>;
//# sourceMappingURL=store.d.ts.map