import { IPropertyConverter, JsonValue } from "ta-json";
import { IRendition } from "../contracts/base/rendition";
export declare class RenditionsConverter implements IPropertyConverter {
    /**
     * Serializes an array of renditions into a Json Value.
     *
     * @param value - An array of renditions
     *
     * @returns A Json Value.
     */
    serialize(renditions: Array<IRendition>): JsonValue;
    /**
     * Deserializes a Json Value into an array of renditions.
     *
     * @param value - A Json Value
     *
     * @returns An array with Renditions.
     */
    deserialize(value: JsonValue): Array<IRendition>;
}
