/**
 * Utility to animate scroll position of an element using an `ease-out` curve over 250ms.
 * Cancels the animation if the user touches back down.
 */
export declare function scrollTransition(el: HTMLElement, to: number, fn: () => void): () => void;
