import type { IClipSlot, ITrack } from "../types"; import { Clip } from "./clip"; import { Timeline } from "./timeline"; import { TimeUnit } from "./timeUnit"; export declare class ClipSlot extends Timeline implements IClipSlot { clip?: Clip; hasStop?: boolean; constructor(clip?: Clip, hasStop?: boolean, track?: ITrack, timeUnit?: TimeUnit, name?: string, color?: string, comment?: string); toXmlObject(): any; fromXmlObject(xmlObject: any): this; }