/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { Labels } from './labels.interface';
import { RadialLabelPosition } from './radial-label-position';
/**
 * Represents the labels configuration of the Gauge.
 */
export interface RadialLabels extends Labels {
    /**
     * Sets the position of the labels.
     * This property determines where the labels will be placed relative to the radial gauge.
     */
    position?: RadialLabelPosition;
}
