import * as React from 'react'; import type { GridSlotProps } from "../../models/gridSlotsComponentsProps.mjs"; interface GridToolbarColumnsButtonProps { /** * The props used for each slot inside. * @default {} */ slotProps?: { button?: Partial; tooltip?: Partial; }; } /** * @deprecated Use the {@link https://mui.com/x/react-data-grid/components/columns-panel/ Columns Panel Trigger} component instead. This component will be removed in a future major release. */ declare const GridToolbarColumnsButton: React.ForwardRefExoticComponent | React.ForwardRefExoticComponent>; export { GridToolbarColumnsButton };