/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { TableCell } from '../models/table-cell'; /** * @hidden */ export declare class ColorPaletteService { colorRows: string[][]; setColorMatrix(palette: string[], columns: number): void; isInColors(colors: any, current: any): boolean; getCellCoordsFor(color?: string): TableCell | undefined; getColorAt(cellCoords: TableCell): string | undefined; getNextCell(current: TableCell, horizontalStep: number, verticalStep: number): TableCell; private clampIndex; }