import * as React from 'react'; import type { SxProps, Theme } from '@mui/system'; export type GridToolbarContainerProps = React.HTMLAttributes & { sx?: SxProps; }; /** * @deprecated Use the {@link https://mui.com/x/react-data-grid/components/toolbar/ Toolbar} component instead. This component will be removed in a future major release. */ declare const GridToolbarContainer: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent & { sx?: SxProps; } & React.RefAttributes>; export { GridToolbarContainer };