/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Lists the dash line types.
 */
export type DashType = 'dash' | 'dashDot' | 'dot' | 'longDash' | 'longDashDot' | 'longDashDotDot' | 'solid';
/**
 * Represents the appearance settings for border lines.
 */
export interface Border {
    /**
     * Sets the color of the border line. Accepts a valid CSS color string, including hex and rgb.
     */
    color?: string;
    /**
     * Sets the dash type of the border line.
     */
    dashType?: DashType;
    /**
     * Sets the width of the border line in pixels.
     */
    width?: number;
}
/**
 * Represents the margin options for each side.
 */
export interface Margin {
    /**
     * Sets the top margin in pixels.
     */
    top?: number;
    /**
     * Sets the right margin in pixels.
     */
    right?: number;
    /**
     * Sets the bottom margin in pixels.
     */
    bottom?: number;
    /**
     * Sets the left margin in pixels.
     */
    left?: number;
}
/**
 * Represents the padding options for each side.
 */
export interface Padding {
    /**
     * Sets the top padding in pixels.
     */
    top?: number;
    /**
     * Sets the right padding in pixels.
     */
    right?: number;
    /**
     * Sets the bottom padding in pixels.
     */
    bottom?: number;
    /**
     * Sets the left padding in pixels.
     */
    left?: number;
}
/**
 * Sets the rendering mode of the component.
 *
 * The supported values are:
 * * `"canvas"`&mdash;Renders the component as a Canvas element.
 * * `"svg"`&mdash;Renders the component as an inline SVG document.
 */
export type RenderMode = 'svg' | 'canvas';
