@mui/x-data-grid
Version:
The Community plan edition of the Data Grid components (MUI X).
10 lines • 438 B
TypeScript
import * as React from 'react';
import { RefObject } from '@mui/x-internals/types';
import { GridScrollParams } from "../models/params/gridScrollParams.js";
interface ScrollAreaProps {
scrollDirection: 'left' | 'right';
scrollPosition: RefObject<GridScrollParams>;
}
declare function GridScrollAreaWrapper(props: ScrollAreaProps): React.JSX.Element | null;
export declare const GridScrollArea: typeof GridScrollAreaWrapper;
export {};