@mui/x-data-grid-premium
Version:
The Premium plan edition of the MUI X Data Grid Components.
7 lines • 587 B
TypeScript
import type { RefObject } from '@mui/x-internals/types';
import type { GridPrivateApiPremium } from "../../../models/gridApiPremium.js";
export declare const useGridParamsOverridableMethods: (apiRef: RefObject<GridPrivateApiPremium>) => {
getCellValue: <V = any>(id: import("@mui/x-data-grid").GridRowId, field: string) => V;
getRowValue: <V = any>(row: import("@mui/x-data-grid").GridRowModel, colDef: import("@mui/x-data-grid").GridColDef) => V;
getRowFormattedValue: <V = any>(row: import("@mui/x-data-grid").GridRowModel, colDef: import("@mui/x-data-grid").GridColDef) => V;
};