import { ConfigVars } from "@soapjs/soap"; export declare class RedisConfig { readonly hosts: string[]; readonly ports: string[]; readonly iana?: boolean; readonly user?: string; readonly password?: string; readonly database?: string | number; static create(configVars: ConfigVars, prefix?: string): RedisConfig; constructor(hosts: string[], ports: string[], iana?: boolean, user?: string, password?: string, database?: string | number); }