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