import Timecode from 'timecode-boss'; import type { TimecodeAttributes } from 'timecode-boss'; export interface MotionEffectAttributes { reel: string; speed: number; entryPoint: TimecodeAttributes; } export default class MotionEffect implements MotionEffectAttributes { reel: string; speed: number; entryPoint: Timecode; constructor(input: MotionEffectAttributes); toObject(): MotionEffectAttributes; }