/**-----------------------------------------------------------------------------------------
* Copyright © 2026 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. You can access the current value as an argument.
 * @param value - The currently set value.
 * @returns The formatted string that displays within the label.
 */
export type LabelFn = (value: number) => string;
