export class Track { constructor(type?: string); attribute: number; flag: number; id: string; segments: any[]; type: string; addSegments(material_id: any, start: any, duration: any): Segments; } export class TrackTypes { static TEXT: string; static VIDEO: string; static EFFECT: string; static AUDIO: string; static STICKER: string; } import { Segments } from "./Segments"; //# sourceMappingURL=Track.d.ts.map