import { RegularTableElement } from "regular-table"; import { type DatagridModel, type ColumnsConfig } from "../types.js"; import { CollectedCell } from "./types.js"; /** * Apply styles to all body cells in a single pass. */ export declare function applyBodyCellStyles(model: DatagridModel, cells: CollectedCell[], plugins: ColumnsConfig, isSettingsOpen: boolean, isSelectable: boolean, isEditable: boolean, regularTable: RegularTableElement): void;