import { CellValue } from "./CellValue"; import { TableAction } from "./TableAction"; import { Icon } from "./Icon"; export declare class Row { id: number | string; rowCellValues: Map; primaryAction: TableAction; secondaryActions: TableAction[]; icons: Icon[]; constructor(id: number | string, rowCellValues: Map, primaryAction?: TableAction | null, secondaryActions?: TableAction[], icons?: Icon[]); }