export default animator; /** * Map of easings' strings to functions * Easing functions from http://gizma.com/easing/ * @type {Object} */ export const easings: any; /** * Change any value using an animation easing function. * @param {string} easing Easing function. * @param {number} startValue The initial value * @param {number} valueChange Change in value * @param {number} dur Animation duration * @param {Function} cb Callback to be called on each iteration. The callback is passed one argument: current value. * @return {Object} Object with cancel method to stop the animation. */ declare function animator(easing: string, startValue: number, valueChange: number, dur: number, cb: Function): any;