/**
 * @export
 * @class AdOpportunity
 */
export declare class AdOpportunity {
    /**
     * The reason why the scene was rated with a certain score
     * @type {string}
     * @memberof AdOpportunity
     */
    reason?: string;
    /**
     * Score from 0.0 to 1.0 rating the ad placement suitability at the end of a scene based on content analysis
     * @type {number}
     * @memberof AdOpportunity
     */
    score?: number;
    constructor(obj?: Partial<AdOpportunity>);
}
export default AdOpportunity;
