export declare const MAX_DELAY = 140;
export declare const MIN_DELAY = 20;
/**
 * Decreasing exponential function used to determine the "speed" of edge-scrolling
 * as the timeout delay.
 *
 * Returns a timeout delay in milliseconds.
 */
export declare function scrollDelay(value: number): number;
