@mui/x-data-grid-premium
Version:
The Premium plan edition of the MUI X Data Grid Components.
12 lines • 512 B
TypeScript
import * as React from 'react';
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): React.JSX.Element;
export { GridChartsPanelDataBody };