/** * https://github.com/gre/bezier-easing * BezierEasing - use bezier curve for transition easing function * by Gaëtan Renaudeau 2014 - 2015 – MIT License */ declare function LinearEasing(x: any): any; export default function bezier(mX1: any, mY1: any, mX2: any, mY2: any): typeof LinearEasing; export {};