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