type RedisCommandArg = string | number; interface SimpleRedisClientOptions { readonly url: string; readonly connectTimeoutMs?: number; } declare class SimpleRedisClient { private readonly url; private readonly timeoutMs; constructor(options: SimpleRedisClientOptions); command(args: readonly RedisCommandArg[]): Promise; private connect; private commandOnSocket; private encode; } export { SimpleRedisClient as S, type SimpleRedisClientOptions as a };