import type { StateManager } from '../state'; import type { Group } from '../../scenegraph/graphic/group'; import type { BaseTableAPI } from '../../ts-types/base-table'; export declare function getCellHoverColor(cellGroup: Group, table: BaseTableAPI): string | undefined; export declare function isCellHover(state: StateManager, col: number, row: number, cellGroup: Group): string | undefined;