import { Referenceable } from "./referenceable"; import { Timeline } from "./timeline/timeline"; import { IScene } from "./types"; /** Represents a clip launcher Scene of a DAW. */ export declare class Scene extends Referenceable implements IScene { /** Content timeline of this scene, will typically be structured like this: *
{@code
     * 
     *   
     *     
     *        
     *           ...
     *        
     *     
     *      ...
     *   
     * 
     * }
* */ content?: Timeline; constructor(content?: Timeline, name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }