/**
 * @export
 * @class CencFairPlay
 */
export declare class CencFairPlay {
    /**
     * Initialization vector as hexadecimal string
     * @type {string}
     * @memberof CencFairPlay
     */
    iv?: string;
    /**
     * URL of the licensing server. Typically starts with a skd://. Please check with your DRM provider on their required format.
     * @type {string}
     * @memberof CencFairPlay
     */
    uri?: string;
    constructor(obj?: Partial<CencFairPlay>);
}
export default CencFairPlay;
