/** * DevExpress Analytics (core\snapLines\_snapLinesCollector.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 { ISnapLine } from './_snapLineSurface'; import { IArea } from '../elements/area'; export declare class SnapLinesCollector { private _verticalSnapLines; private _horizontalSnapLines; private _snapTargetToIgnore; private _appendSnapLine; private _collectSnaplines; _getCollection(parent: any): { rect: ko.Observable; }[]; _enumerateCollection(parent: any, parentAbsoluteProsition: { top: number; left: number; }, callback: (item: any, itemAbsoluteRect: { left: number; right: number; top: number; bottom: number; }) => void): void; collectSnaplines(root: any, snapTargetToIgnore: any): { vertical: ISnapLine[]; horizontal: ISnapLine[]; }; }