/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { BaseGaugeProps } from './BaseGaugeProps';
import { RadialPointer, RadialScale } from './types';
/**
 * Represents the props of the [KendoReact RadialGauge component](https://www.telerik.com/kendo-react-ui/components/gauges/radialgauge).
 */
export interface RadialGaugeProps extends BaseGaugeProps {
    /**
     * The configuration of the pointers ([see example](https://www.telerik.com/kendo-react-ui/components/gauges/radialgauge/multiple-pointers)).
     *
     * Example:
     * ```jsx
     * <RadialGauge pointer={{ value: 50 }} />
     * ```
     */
    pointer: RadialPointer | RadialPointer[];
    /**
     * The configuration of the scale.
     *
     * Example:
     * ```jsx
     * <RadialGauge scale={{ startAngle: -90, endAngle: 180 }} />
     * ```
     */
    scale?: RadialScale;
}
