/**
 * @module Serde
 */
import { type ISerde } from "../../../../serde/contracts/_module-exports.js";
/**
 * @internal
 */
export declare class RedisSerde implements ISerde<string> {
    private readonly serde;
    constructor(serde: ISerde<string>);
    serialize<TValue>(value: TValue): string;
    deserialize<TValue>(value: string): TValue;
}
