import type { INotes, ITrack } from "../types"; import { Note } from "./note"; import { Timeline } from "./timeline"; import { TimeUnit } from "./timeUnit"; export declare class Notes extends Timeline implements INotes { notes: Note[]; constructor(notes?: Note[], track?: ITrack, timeUnit?: TimeUnit, name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }