/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { DiagramNavigationOptions, DiagramDataItem } from '../interfaces/index.js'; import { ConnectionOptions } from '../interfaces/ConnectionTypes'; import { ShapeOptions } from '../interfaces/ShapeTypes'; /** * @hidden */ export declare const DIAGRAM_CLASSNAME = "k-diagram"; /** * @hidden */ export declare const DEFAULT_NAVIGABLE_OPTIONS: DiagramNavigationOptions; /** * @hidden */ export declare const diagramDefaultProps: { connections: DiagramDataItem[]; shapes: DiagramDataItem[]; editable: boolean; pannable: { enabled: boolean; showScrollbars: boolean; autoHideScrollbars: boolean; }; selectable: boolean; zoom: number; zoomMax: number; zoomMin: number; zoomRate: number; role: string; };