/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { DashType } from './dash-type';
/**
 * Specifies the appearance settings for the note-connecting line.
 */
export interface NoteLine {
    /**
     * Specifies the color of the note line. Accepts a valid CSS color string, including hex and rgb.
     */
    color?: string;
    /**
     * Specifies the dash type of the note line.
     */
    dashType?: DashType;
    /**
     * Specifies the length of the connecting line in pixels.
     */
    length?: number;
    /**
     * Specifies the width of the connecting line in pixels.
     */
    width?: number;
}
