import * as React from 'react';
export interface FieldTransferObject {
  field: string;
  modelKey: 'columns' | 'rows' | 'values' | null;
}
declare function GridPivotPanelBody({
  searchValue
}: {
  searchValue: string;
}): React.JSX.Element;
export { GridPivotPanelBody };