import type { RefObject } from '@mui/x-internals/types'; import type { GridParamsApi } from "../api/gridParamsApi.js"; /** * Overridable params methods interface, these methods could be overriden in a higher plan package. */ export interface GridParamsOverridableMethodsInternalHook { useGridParamsOverridableMethods: (apiRef: RefObject) => { getCellValue: GridParamsApi['getCellValue']; getRowValue: GridParamsApi['getRowValue']; getRowFormattedValue: GridParamsApi['getRowFormattedValue']; }; }