@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
18 lines (17 loc) • 762 B
TypeScript
import * as React from 'react';
import { GridToolbarContainerProps } from '../containers/GridToolbarContainer';
import { GridToolbarExportProps } from './GridToolbarExport';
import { GridToolbarQuickFilterProps } from './GridToolbarQuickFilter';
export interface GridToolbarProps extends GridToolbarContainerProps, GridToolbarExportProps {
/**
* Show the quick filter component.
* @default false
*/
showQuickFilter?: boolean;
/**
* Props passed to the quick filter component.
*/
quickFilterProps?: GridToolbarQuickFilterProps;
}
declare const GridToolbar: React.ForwardRefExoticComponent<GridToolbarProps> | React.ForwardRefExoticComponent<GridToolbarProps & React.RefAttributes<HTMLDivElement>>;
export { GridToolbar };