/** * DevExpress Analytics (diagram\elements\diagramSurface.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 { SurfaceElementBase, ISurfaceContext } from '../../core/elements/baseSurface'; import { DiagramViewModel } from './diagramModel'; import { ISelectionTarget } from '../../core/selection/_selection'; import { IUnitProperties } from '../../core/utils/_units'; import { IHoverInfo } from '../../core/internal/_hoverInfo'; import { IMargins } from '../../core/elements/margins'; import { DiagramElementBaseSurface } from './diagramElementBaseSurface'; import { MeasureUnit } from '../../core/internal/_papperKindMapper'; export declare class DiagramSurface extends SurfaceElementBase implements ISelectionTarget, ISurfaceContext { static _unitProperties: IUnitProperties; constructor(diagram: DiagramViewModel, zoom?: ko.Observable); measureUnit: ko.Observable; dpi: ko.Observable; zoom: ko.Observable | ko.Computed; controls: ko.ObservableArray>; allowMultiselect: boolean; focused: ko.Observable; selected: ko.Observable; underCursor: ko.Observable; checkParent(surfaceParent: ISelectionTarget): boolean; _parent: ISelectionTarget; get parent(): ISelectionTarget; set parent(newVal: ISelectionTarget); templateName: string; getChildrenCollection(): ko.ObservableArray; margins: IMargins; }