import { ValkeyCommandArgument, ValkeyCommandArguments } from "."; import { ScanOptions } from "./generic-transformers"; export declare const FIRST_KEY_INDEX = 1; export declare const IS_READ_ONLY = true; export declare function transformArguments(key: ValkeyCommandArgument, cursor: number, options?: ScanOptions): ValkeyCommandArguments; type HScanRawReply = [ValkeyCommandArgument, Array]; export interface HScanTuple { field: ValkeyCommandArgument; value: ValkeyCommandArgument; } interface HScanReply { cursor: number; tuples: Array; } export declare function transformReply([cursor, rawTuples]: HScanRawReply): HScanReply; export {};