/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The callback that returns the string content of the status label. The current value is available as an argument.
 * @param { number } value - The currently set value.
 * @returns { string } - The formatted string that will be displayed within the label.
 */
export type LabelFn = (value: number) => string;
