import * as TWEEN from '@tweenjs/tween.js'; declare class Tween { disableNativeTouchScrolling: () => void; tween: (fromValue: any, toValue: any, options: any) => Promise; tweenState: (component: any, tweenKey: any, { onStart, tweeners, onEnd, duration, easing }: { onStart: any; tweeners: any; onEnd: any; duration: any; easing: any; }) => TWEEN.Tween<{ value: number; }>; } declare const instance: Tween; export default instance;