import type { CommandMinOrMaxOption, RespSortedSetMember } from '../index.ts'; export declare function createCommand(keys: string[], where: CommandMinOrMaxOption, count?: number): string[]; export declare function zmpop(this: T, keys: string[], where: CommandMinOrMaxOption, count?: number): Promise<{ key: string; elements: RespSortedSetMember[]; } | null>;