/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * BezierEasing - use bezier curve for transition easing function * https://github.com/gre/bezier-easing * * @flow strict * @format * @copyright 2014-2015 Gaƫtan Renaudeau. MIT License. */ export default function bezier(mX1: number, mY1: number, mX2: number, mY2: number): (x: number) => number;