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