import { default as React } from 'react'; import { PivotTableProps } from './pivot-table-types'; declare function PivotTable = Record>({ data, config, fieldDefinitions, onConfigChange, onDataChange, defaultExpandedRows, expandAll, showGrandTotal, showSubTotals, sortable, striped, bordered, compact, className, emptyMessage, maxDepth: _maxDepth, showToolbar, showConfigPanel, configPanelPosition, configPanelCollapsible, permissions: permissionsProp, plugins, disabledFunctions, editable, editConfig: editConfigProp, onCellEdit, exportable, onExport, headerTemplate, rowHeaderTemplate, cellTemplate, loading, height, }: PivotTableProps): React.JSX.Element; export { PivotTable }; export type { PivotTableProps, PivotConfig, PivotField, PivotFilter, PivotSort, AggregateFunction, BuiltInAggregateFunction, FieldDefinition, CellEditorProps, CellTemplateProps, CustomAggregatePlugin, PivotPlugin, PivotPermissions, PivotNode, ColumnNode, PivotZone, } from './pivot-table-types';