UNPKG

@mui/x-data-grid

Version:

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

21 lines 942 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']; children: React.ReactNode; /** * If true, the children passed to the component will not be validated. * If false, only `GridActionsCellItem` and `React.Fragment` are allowed as children. * Only use this prop if you know what you are doing. * @default false */ suppressChildrenValidation?: boolean; } declare function GridActionsCell(props: GridActionsCellProps): import("react/jsx-runtime").JSX.Element; declare namespace GridActionsCell { var propTypes: any; } export { GridActionsCell }; export declare const renderActionsCell: (params: GridRenderCellParams) => import("react/jsx-runtime").JSX.Element;