import { default as React } from 'react'; interface SpreadsheetBodyProps { /** * Optional summary row rendered INSIDE the scroll region so it tracks * horizontal scroll the same way the column header does, while remaining * pinned vertically (position:sticky; bottom:0). Pass the already-rendered * ReactNode (typically the result of calling the user's summaryRow render * function with column metadata). */ summaryRow?: React.ReactNode; } declare const SpreadsheetBody: React.FC; export default SpreadsheetBody; //# sourceMappingURL=SpreadsheetBody.d.ts.map