import { ReactNode } from '../../../node_modules/react'; /** * Matches viewports strictly below 756px wide. Used for DataGrid toolbar: bottom drawers * vs anchored dropdowns/popovers. */ export declare const DATA_GRID_COMPACT_TOOLBAR_MEDIA = "(max-width:755px)"; export declare function DataGridCompactToolbarProvider({ value, children, }: { value: boolean; children: ReactNode; }): import("react/jsx-runtime").JSX.Element; export declare function useDataGridCompactToolbar(): boolean;