import { CompleteThemeSettings } from '../../../../../../types.js'; import { TableCustomStyles } from '../types.js'; export declare const getCellStyles: ({ colIndex, rowIndex, themeSettings, customStyles, isHeaderCell, }: { colIndex?: number | undefined; rowIndex?: number | undefined; themeSettings: CompleteThemeSettings; customStyles?: TableCustomStyles | undefined; isHeaderCell?: boolean | undefined; }) => { color: string; backgroundColor: string; fontFamily: string; };