import type { StringOrBuffer } from '../index.ts'; export declare function createCommand(key: string, mapping: Record): StringOrBuffer[]; /** * @deprecated * @see https://redis.io/docs/latest/commands/hmset/ * As of Redis version 4.0.0, this command is regarded as deprecated. * Use `hset` instead. */ export declare function hmset(this: T, key: string, mapping: Record): Promise<"OK">;