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>;