/** * DevExpress Analytics (query-builder\elements\querySurface.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 { QueryViewModel, QueryViewModelBase } from './queryModel'; import { ISelectionTarget } from '../../core/selection/_selection'; import { IUnitProperties } from '../../core/utils/_units'; import { TableSurface } from './tableSurface'; import { RelationSurface } from './relationSurface'; import { IHoverInfo } from '../../core/internal/_hoverInfo'; import { IMargins } from '../../core/elements/margins'; import { ColumnSurface } from './columnSurface'; import { MeasureUnit } from '../../core/internal/_papperKindMapper'; export declare class QuerySurface extends SurfaceElementBase implements ISelectionTarget, ISurfaceContext { static _unitProperties: IUnitProperties; private _joinedColumns; constructor(query: QueryViewModelBase, zoom?: ko.Observable); measureUnit: ko.Observable | ko.Computed; dpi: ko.Observable | ko.Computed; zoom: ko.Observable | ko.Computed; placeholder: () => any; tables: ko.ObservableArray; relations: ko.ObservableArray; allowMultiselect: boolean; focused: ko.Observable; selected: ko.Observable; underCursor: ko.Observable; checkParent(surfaceParent: ISelectionTarget): boolean; pageWidth: ko.Observable | ko.Computed; templateName: string; getChildrenCollection(): ko.ObservableArray; margins: IMargins; rtl: ko.Observable; isJoined(column: ColumnSurface): boolean; }