import type { RefObject } from '@mui/x-internals/types';
import type { GridPrivateApiPro } from "../../../models/gridApiPro.js";
import type { DataGridProProcessedProps } from "../../../models/dataGridProProps.js";
export declare const useGridRowsOverridableMethods: (apiRef: RefObject<GridPrivateApiPro>, props: Pick<DataGridProProcessedProps, "processRowUpdate" | "onProcessRowUpdateError" | "setTreeDataPath">) => {
  setRowIndex: (rowId: import("@mui/x-data-grid").GridRowId, targetIndex: number) => void;
  setRowPosition: (sourceRowId: import("@mui/x-data-grid").GridRowId, targetRowId: import("@mui/x-data-grid").GridRowId, position: import("@mui/x-data-grid/internals").RowReorderDropPosition) => void | Promise<void>;
};