import { GridLoadingOverlayVariant } from '../../../components/GridLoadingOverlay'; import { GridSlotsComponent } from '../../../models/gridSlotsComponent'; export type GridOverlayType = keyof Pick | null; /** * Uses the grid state to determine which overlay to display. * Returns the active overlay type and the active loading overlay variant. */ export declare const useGridOverlays: () => { overlayType: GridOverlayType; loadingOverlayVariant: GridLoadingOverlayVariant | null; };