import { ITableProps } from "../.."; import { ISubRowColumnProps } from "./ISubRowColumnProps"; export declare type ISubRowProps = { elements: TElement[]; createSubRows: (element: TElement) => TSubRow[]; areRowsEqual: (a: TElement, b: TElement) => boolean; columnProps: ISubRowColumnProps[]; getKey: (element: TElement) => TKey; } & Omit, "rows" | "errors" | "columnProps" | "applyPastes">;