import * as React from 'react'; import type { RenderProp } from '@mui/x-internals/useComponentRenderer'; export type ToolbarProps = React.HTMLAttributes & { /** * A function to customize rendering of the component. */ render?: RenderProp>; }; /** * The styled `
` element rendered by the `` component. * Use it to apply the toolbar styles to other elements, inside or outside of a Data Grid. */ declare const ToolbarRoot: import("@emotion/styled").StyledComponent, Pick, HTMLDivElement>, keyof React.ClassAttributes | keyof React.HTMLAttributes>, {}>; /** * The top level Toolbar component that provides context to child components. * It renders a styled `
` element. * * Demos: * * - [Toolbar](https://mui.com/x/react-data-grid/components/toolbar/) * * API: * * - [Toolbar API](https://mui.com/x/api/data-grid/toolbar/) */ declare const Toolbar: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent & { /** * A function to customize rendering of the component. */ render?: RenderProp>; } & React.RefAttributes>; export { Toolbar, ToolbarRoot };