import * as React from 'react'; import type { DataGridProcessedProps } from "../../models/props/DataGridProps.mjs"; import type { GridOverlayType, GridLoadingOverlayVariant } from "../../hooks/features/overlays/gridOverlaysInterfaces.mjs"; type OwnerState = Pick & { hasScrollX: boolean; hasPinnedRight: boolean; overlayType: GridOverlayType; loadingOverlayVariant: GridLoadingOverlayVariant | null; }; export declare const GridMainContainer: React.ForwardRefExoticComponent> | React.ForwardRefExoticComponent<{ className: string; ownerState: OwnerState; } & { children?: React.ReactNode | undefined; } & React.RefAttributes>; export {};