UNPKG

@mui/x-data-grid

Version:

The Community plan edition of the Data Grid components (MUI X).

13 lines 579 B
import * as React from 'react'; import { GridRenderCellParams } from "../../models/params/gridCellParams.js"; import { GridMenuProps } from "../menu/GridMenu.js"; interface GridActionsCellProps extends Omit<GridRenderCellParams, 'api'> { api?: GridRenderCellParams['api']; position?: GridMenuProps['position']; } declare function GridActionsCell(props: GridActionsCellProps): React.JSX.Element; declare namespace GridActionsCell { var propTypes: any; } export { GridActionsCell }; export declare const renderActionsCell: (params: GridRenderCellParams) => React.JSX.Element;