import { CommandParser } from '@redis/client/dist/lib/client/parser';
import { ArrayReply, BlobStringReply, SetReply } from '@redis/client/dist/lib/RESP/types';
import { RedisVariadicArgument } from '@redis/client/dist/lib/commands/generic-transformers';
/**
 * `TS.QUERYLABELS LABELS [FILTER filterExpr ...]` — the set of all label names
 * present on at least one matching (and readable) time series. Added in
 * RedisTimeSeries 8.10. 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, filter?: RedisVariadicArgument) => void;
    readonly transformReply: {
        readonly 2: () => ArrayReply<BlobStringReply>;
        readonly 3: () => SetReply<BlobStringReply>;
    };
};
export default _default;
//# sourceMappingURL=QUERYLABELS.d.ts.map