import Redis from 'ioredis'; import { Provider } from '@nestjs/common'; export declare class RedisClientError extends Error { } export interface RedisClient { defaultKey: string; clients: Map; size: number; } export declare const createClient: () => Provider;