﻿/**
* DevExpress HTML/JS Reporting (designer\bands\xrDetailReportBand.d.ts)
* Version:  26.1.3
* Build date: Jun 16, 2026
* Copyright (c) 2012 - 2026 Developer Express Inc. ALL RIGHTS RESERVED
* License: https://www.devexpress.com/Support/EULAs/universal.xml
*/
import { ElementViewModel, IElementViewModel, ISurfaceContext } from '@devexpress/analytics-core/analytics-elements';
import { ModelSerializer } from '@devexpress/analytics-core/analytics-utils';
import { FilterStringOptions } from '@devexpress/analytics-core/analytics-widgets';
import * as ko from 'knockout';
import { ControlType } from '../controls/utils/_controlTypes';
import { ObjectStorageItem } from '../dataObjects/objectStorageItem';
import { BandSurface } from './xrBand';
import { VerticalBandsContainerSurface } from './_vericalBandContainer';
import { SortableBandViewModel } from './sortableBand';
export declare class DetailReportBand extends SortableBandViewModel {
    dataMember: ko.Observable<string> | ko.Computed<string>;
    dataSource: ko.Observable<ObjectStorageItem>;
    _filterString: ko.Observable<string> | ko.Computed<string>;
    filterString: FilterStringOptions;
    constructor(band: any, parent: ElementViewModel<ControlType>, serializer?: ModelSerializer);
    initHeight(): void;
    createChildsArray(band: any, serializer: ModelSerializer): void;
    addChild(control: IElementViewModel): void;
    private _updateLevelsOnInsertWithDefaultLevel;
    private _updateLevelsOnInsert;
    updateLevelsOnInsert(maxLevel: number, newValue: number): void;
    removeChild(control: ElementViewModel<ControlType>): void;
    protected getDefaultLevel(): number;
    dispose(): void;
}
export declare class DetailReportBandSurface extends BandSurface {
    dispose(): void;
    getChildrenCollection(): ko.ObservableArray<BandSurface>;
    createUnderCursor(): void;
    getTotalHeight(): number;
    getHeight(): number;
    getHasOwnRuler(): boolean;
    constructor(band: DetailReportBand, context: ISurfaceContext);
    verticalBandsContainer: VerticalBandsContainerSurface;
    templateName: string;
    selectionTemplate: string;
    leftMarginTemplate: string;
}
