import { RedisClientType } from 'redis'; export { RedisClientType }; /** * Single Redis Pool Client/Connection */ export declare class RedisClient { #private; constructor(host: string, password: string, port?: number); destroy(): Promise; run(code: (conn: RedisClientType) => Promise): Promise; }