declare class RenditionTypeInfo {
    __classname__: string;
    Rendition: string | null;
    Type: string | null;
    constructor(Rendition?: string | null, Type?: string | null);
}

export { RenditionTypeInfo };
