import { Easing } from '../easing'; export interface TweenOptions { easing: Easing; length: number; } export declare namespace TweenOptions { function clone(opts: T): T; }