import { Codec, Value } from "../types.js"; export declare class JsonCodec implements Codec { encode: (value: Value) => string; decode: (text: string) => X | undefined; }