import * as ReactTable from "react-table"; import * as React from "react"; import { ResizerStopBehavior } from "../../resizing/ResizingWidthsContext"; export interface BeeTableTdForAdditionalRowProps { children?: React.ReactElement; isEmptyCell: boolean; isLastColumn: boolean; rowIndex: number; row: ReactTable.Row; columnIndex: number; resizerStopBehavior: ResizerStopBehavior; column: ReactTable.ColumnInstance; lastColumnMinWidth?: number; isReadOnly: boolean; } export declare function BeeTableTdForAdditionalRow({ children, isEmptyCell, columnIndex, column, rowIndex, isLastColumn, resizerStopBehavior, lastColumnMinWidth, isReadOnly, }: BeeTableTdForAdditionalRowProps): JSX.Element; //# sourceMappingURL=BeeTableTdForAdditionalRow.d.ts.map