import type { HotInstance } from '../../core/types'; import type { CellProperties } from '../../settings'; export { CHIP_CLASS } from './utils/utils'; export declare const RENDERER_TYPE = "multiselect"; /** * Multi-select renderer that displays values as chips. */ export declare function multiSelectRenderer(hotInstance: HotInstance, TD: HTMLTableCellElement, row: number, col: number, prop: string | number, value: unknown, cellProperties: CellProperties): void;