@mui/x-data-grid-premium
Version:
The Premium plan edition of the MUI X Data Grid Components.
7 lines • 364 B
TypeScript
import * as React from 'react';
import type { GridSlotProps } from '@mui/x-data-grid-pro';
export type GridChartsPanelDataSearchProps = Pick<GridSlotProps['baseTextField'], 'value' | 'onChange'> & {
onClear: () => void;
};
declare function GridChartsPanelDataSearch(props: GridChartsPanelDataSearchProps): React.JSX.Element;
export { GridChartsPanelDataSearch };