/** * Function to increment display value for loader animations * @param {number} displayedValue The current displayed value of the loader * @param {number} value The final value of the loader * @param {function} setDisplayedValue the function to set the display value * @returns {number} */ export declare function incrementDisplayValue(displayedValue: number, value: number, setDisplayedValue: (value: number) => void): void;