import { ReactElement, ReactNode } from 'react'; /** * Props for the GridToolButtons container component. */ export interface GridToolButtonsProps { /** Child buttons to render inside the container */ children: ReactNode; } /** * Container component for toolbar buttons in DataGrid shell header. * * This component renders a `` element that gets * slotted into the shell toolbar. Place your buttons inside. * * ## Usage * * ```tsx * * * * * * * ``` * * @category Component */ export declare function GridToolButtons({ children }: GridToolButtonsProps): ReactElement; //# sourceMappingURL=grid-tool-button.d.ts.map