import BitmovinResponse from './BitmovinResponse';
/**
 * @export
 * @class Scte35Cue
 */
export declare class Scte35Cue extends BitmovinResponse {
    /**
     * Cue out duration in seconds. (required)
     * @type {number}
     * @memberof Scte35Cue
     */
    cueDuration?: number;
    /**
     * The ids of the manifests to update. If this property is not set, all the manifests tied to the encoding are updated.
     * @type {string[]}
     * @memberof Scte35Cue
     */
    manifestIds?: string[];
    constructor(obj?: Partial<Scte35Cue>);
}
export default Scte35Cue;
