/**
* The row reorder private API interface.
*/exportinterfaceGridRowReorderPrivateApi {
/**
* Sets the row drag active state.
* @param {boolean} isActive Whether a row drag operation is currently active.
*/setRowDragActive: (isActive: boolean) =>void;
}