/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ /** * An interface for the ProgressBar label. */ export interface LabelProps { /** * The current value of the ProgressBar. Can be a number or `null` for indeterminate state. */ value?: number | null; }