import { CommandParser } from '@redis/client/dist/lib/client/parser';
import { RedisArgument, ArrayReply, BlobStringReply, SetReply } from '@redis/client/dist/lib/RESP/types';
import { RedisVariadicArgument } from '@redis/client/dist/lib/commands/generic-transformers';
/**
 * `TS.QUERYLABELS VALUES label [FILTER filterExpr ...]` — the set of all values
 * assigned to `label` across matching (and readable) time series. Added in
 * RedisTimeSeries 8.10. The `label` is matched byte-exactly and is not
 * normalized. Keyless; in cluster mode the server performs the cluster-wide
 * fan-out and returns a single merged, deduplicated reply.
 */
declare const _default: {
    readonly NOT_KEYED_COMMAND: true;
    readonly IS_READ_ONLY: true;
    readonly parseCommand: (this: void, parser: CommandParser, label: RedisArgument, filter?: RedisVariadicArgument) => void;
    readonly transformReply: {
        readonly 2: () => ArrayReply<BlobStringReply>;
        readonly 3: () => SetReply<BlobStringReply>;
    };
};
export default _default;
//# sourceMappingURL=QUERYLABELS_VALUES.d.ts.map