import { Channel } from "./channel"; import { ContentType } from "./contentType"; import { Lane } from "./lane"; import { ITrack } from "./types"; export declare class Track extends Lane implements ITrack { /** Role of this track in timelines & arranger. Can be multiple (comma-separated). */ contentType: ContentType[]; /** If this track is loaded/active of not. */ loaded?: boolean; /** Mixer channel used for the output of this track. */ channel?: Channel; /** Child tracks, typically used to represent group/folder tracks with contentType="tracks". */ tracks: Track[]; constructor(contentType?: ContentType[], loaded?: boolean, channel?: Channel, tracks?: Track[], name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }