import { RedisCommandArguments } from '@redis/client/dist/lib/commands'; import { pushVerdictArguments } from '@redis/client/dist/lib/commands/generic-transformers'; export function transformArguments(dictionary: string, term: string | Array): RedisCommandArguments { return pushVerdictArguments(['FT.DICTADD', dictionary], term); } export declare function transformReply(): number;