/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the configuration options for the RadialGauge pointer cap.
 */
export interface Cap {
    /**
     * Sets the color of the cap.
     * Accepts valid CSS color strings, including hex and rgb.
     */
    color?: string;
    /**
     * Sets the size of the cap as a percentage from 0 to 1.
     */
    size?: number;
}
