import type { IPoints, ITrack } from "../types"; import { Unit } from "../unit"; import { AutomationTarget } from "./automationTarget"; import { Point } from "./point"; import { Timeline } from "./timeline"; import { TimeUnit } from "./timeUnit"; export declare class Points extends Timeline implements IPoints { target: AutomationTarget; points: Point[]; unit?: Unit; constructor(target?: AutomationTarget, points?: Point[], unit?: Unit, track?: ITrack, timeUnit?: TimeUnit, name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }