import * as React from 'react'; import type { GridRenderCellParams, ValueOptions, GridSlotProps } from '@mui/x-data-grid'; import type { GridAggregationCellMeta } from '@mui/x-data-grid/internals'; export interface GridMultiSelectCellProps extends GridRenderCellParams { /** * Props passed to internal components. */ slotProps?: { /** * Props passed to the root element. */ root?: React.HTMLAttributes; /** * Props passed to the chip elements. * Can be an object or a function that receives the chip value and index. */ chip?: Partial | ((value: V, index: number) => Partial); /** * Props passed to the overflow chip element. */ overflowChip?: Partial; /** * Props passed to the popper element. */ popper?: Partial; /** * Props passed to the popper content element. */ popperContent?: React.HTMLAttributes; }; } declare function GridMultiSelectCell(props: GridMultiSelectCellProps): import("react/jsx-runtime").JSX.Element | null; declare namespace GridMultiSelectCell { var propTypes: any; } export { GridMultiSelectCell }; export declare const renderMultiSelectCell: (params: GridMultiSelectCellProps & { aggregation?: GridAggregationCellMeta; }) => any;