/** * Cancel animation frame * @param {number} handler The return that requestAnimationFrame back * @since 1.0.0 * @example * const tick = () => {} * const id = requestAnimationFrame(tick) * cancelAnimationFrame(id) * console.log(typeof id) * @todo jest */ declare const cancelAnimationFrame: (handler: number) => void; export default cancelAnimationFrame;