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;