import { RedisCommandArgument, RedisCommandArguments } from '@redis/client/dist/lib/commands'; export const FIRST_KEY_INDEX = 1; export function transformArguments(key: RedisCommandArgument): RedisCommandArguments { return ['TDIGEST.RESET', key]; } export declare function transformReply(): 'OK';