import { CellEditorComboboxProps } from './types'; import { EditingCellInfo, ObjectForExtending } from '../types'; import { ReactElement } from 'react'; import { ComboboxItemOption } from '../../Combobox'; export declare const CellEditorCombobox: (p: CellEditorComboboxProps) => ReactElement; export declare function CellEditorComboboxInternal({ row, column, cellWidth, cellHeight, onRowChange, disableLeftOffset, readOnly, theme, }: EditingCellInfo & { disableLeftOffset: boolean | undefined; }): import("react/jsx-runtime").JSX.Element;