UNPKG

@mui/x-data-grid

Version:

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

14 lines (13 loc) 580 B
import * as React from 'react'; import { GridRenderCellParams } from '../../models/params/gridCellParams'; import { GridMenuProps } from '../menu/GridMenu'; 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;