/**
 * The row reorder state.
 */
export interface GridRowReorderState {
  /**
   * Whether a row drag operation is currently active.
   */
  isActive: boolean;
}