import * as React from 'react'; import type { GridSlotProps, ValueOptions } from '@mui/x-data-grid'; import type { DataGridProProcessedProps } from "../../models/dataGridProProps.js"; type OwnerState = DataGridProProcessedProps; export declare const MultiSelectChipsRoot: import("@emotion/styled").StyledComponent & { ownerState: OwnerState; }, React.DetailedHTMLProps, HTMLDivElement>, {}>; export interface GridMultiSelectChipsProps extends Omit, 'children'> { values: any[]; field: string; columnWidth: number; optionByValue: Map; getOptionLabel: (option: ValueOptions) => string; /** When true, skip overflow measurement and render every chip (for auto-row-height rows). */ autoWrap?: boolean; classes?: { root?: string; chip?: string; chipHidden?: string; overflow?: string; }; slotProps?: { root?: React.HTMLAttributes; chip?: Partial | ((value: V, index: number) => Partial); /** Props for the `+N` overflow chip. Omit to render it as a non-interactive indicator. */ overflow?: Partial; }; } export declare const GridMultiSelectChips: (props: GridMultiSelectChipsProps & { ref?: React.ForwardedRef; }) => React.ReactElement; export {};