/*! * devextreme-angular * Version: 19.1.16 * Build date: Tue Oct 18 2022 * * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED * * This software may be modified and distributed under the terms * of the MIT license. See the LICENSE file in the root of the project for details. * * https://github.com/DevExpress/devextreme-angular */ import { NestedOption } from '../../../core/nested-option'; import DevExpress from 'devextreme/bundles/dx.all'; export declare abstract class DxoPivotGridDataSource extends NestedOption { fields: Array; format?: DevExpress.ui.format | string; groupIndex?: number; groupInterval?: number | string; groupName?: string; headerFilter?: { allowSearch?: boolean; height?: number; width?: number; }; isMeasure?: boolean; precision?: number; runningTotal?: string; selector?: Function; showGrandTotals?: boolean; showTotals?: boolean; showValues?: boolean; sortBy?: string; sortBySummaryField?: string; sortBySummaryPath?: Array; sortingMethod?: Function; sortOrder?: string; summaryDisplayMode?: string; summaryType?: string; visible?: boolean; width?: number; wordWrapEnabled?: boolean; }>; filter: any; onChanged: Function; onFieldsPrepared: Function; onLoadError: Function; onLoadingChanged: Function; remoteOperations: boolean; retrieveFields: boolean; store: DevExpress.data.Store | DevExpress.data.StoreOptions | DevExpress.data.XmlaStore | DevExpress.data.XmlaStoreOptions | { type?: string; } | Array; }