import { IObject } from '../typings'; import PluginMixins from './PluginMixins'; export default class PathMotion extends PluginMixins { value: any; key: string; static key: string; static className: string; path: any; computedStyle?: IObject; pathLength: number; tweenVars: IObject; keys: string[]; constructor(value: any, key: string); getAnimStart: () => void; getPoint: (r: number, offset?: number | undefined) => any; render: (r: number) => any; }