/**
 * JavaScript Object Notation, a lightweight data-interchange format.
 */
export default class JsonCodec {
    encoding: string;
    contentType: string;
    /**
     * Encode data.
     */
    encode(data: any): string;
    /**
     * Decode data.
     */
    decode(data: any): any;
}
