7 lines
317 B
TypeScript
7 lines
317 B
TypeScript
import * as React from 'react';
|
|
import { SxProps, Theme } from '@mui/system';
|
|
declare const GridVirtualScrollerRenderZone: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & {
|
|
sx?: SxProps<Theme> | undefined;
|
|
} & React.RefAttributes<HTMLDivElement>>;
|
|
export { GridVirtualScrollerRenderZone };
|