import { Tween } from '../TweenOne'; import { IObject } from '../typings'; export default abstract class PluginMixins { value: any; key: string; static className: string; static key: string; root: Tween; index?: number; style: IObject; start: any; startAt: IObject; target: any; constructor(value: any, key: string); abstract getAnimStart(): any; abstract render(r: number): any; }