/** * DevExpress Analytics (diagram\elements\connectors\connectorSurface.d.ts) * Version: 25.2.7 * Build date: May 5, 2026 * Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED * License: https://www.devexpress.com/Support/EULAs/universal.xml */ import * as ko from 'knockout'; import { DiagramElementBaseSurface } from '../diagramElementBaseSurface'; import { ConnectorViewModel } from './connectorModel'; import { ISurfaceContext } from '../../../core/elements/baseSurface'; import { ConnectionPointSurface } from './connectionPointSurface'; export declare class ConnectorSurface extends DiagramElementBaseSurface { constructor(control: ConnectorViewModel, context: ISurfaceContext); template: string; selectiontemplate: string; startPoint: ko.Observable | ko.Computed; endPoint: ko.Observable | ko.Computed; }