import { CustomCellStyle, CustomCellStyleArrangement } from '@visactor/vtable/es/ts-types'; import { ListTable } from '../ListTable'; import { HistoryEditOptions, WholeRow } from './types'; export declare class CellEditStyle { readonly tableInstance: ListTable; customCellStyle: CustomCellStyle[]; customCellStyleArrangement: (CustomCellStyleArrangement & { defaultStyle?: boolean; })[]; styles: CustomCellStyle[]; constructor({ tableInstance, options }: { tableInstance: ListTable; options?: HistoryEditOptions; }); updateCellStyles(arrangement: CustomCellStyleArrangement[]): void; clearAllCellStyles(): void; }