import { RedisCommandArgument, RedisCommandArguments } from '.'; export const FIRST_KEY_INDEX = 1; export function transformArguments( key: RedisCommandArgument, count: number ): RedisCommandArguments { return ['LPOP', key, count.toString()]; } export declare function transformReply(): Array | null;