import ScenePacing from './ScenePacing';
import SceneTension from './SceneTension';
/**
 * @export
 * @class SceneDynamics
 */
export declare class SceneDynamics {
    /**
     * The detected tension of the scene based on content analysis
     * @type {SceneTension}
     * @memberof SceneDynamics
     */
    tension?: SceneTension;
    /**
     * The detected pacing of the scene based on content analysis
     * @type {ScenePacing}
     * @memberof SceneDynamics
     */
    pacing?: ScenePacing;
    constructor(obj?: Partial<SceneDynamics>);
}
export default SceneDynamics;
