@mui/x-data-grid
Version:
The Community plan edition of the MUI X Data Grid components.
7 lines • 347 B
TypeScript
import * as React from 'react';
import type { GridRowId } from "../models/gridRows.js";
export interface GridRowDragAndDropOverlayProps {
rowId: GridRowId;
className?: string;
}
export declare const GridRowDragAndDropOverlay: React.MemoExoticComponent<(props: GridRowDragAndDropOverlayProps) => import("react/jsx-runtime").JSX.Element | null>;