import * as React from 'react'; import type { GridChartsIntegrationSection } from "../../../hooks/features/chartsIntegration/gridChartsIntegrationInterfaces.mjs"; export interface FieldTransferObject { field: string; section: GridChartsIntegrationSection; } export type DropPosition = 'top' | 'bottom' | null; interface GridChartsPanelDataBodyProps { searchValue: string; } declare function GridChartsPanelDataBody(props: GridChartsPanelDataBodyProps): React.JSX.Element; export { GridChartsPanelDataBody };