import { default as React } from 'react'; type SpreadsheetSizerProps = { children: ({ width, height, }: { width: number; height: number; }) => React.ReactNode; customWidth?: number; customHeight?: number; /** If the table is next to another element, the computed width of the table will be incorrect. Use this to input the width of the element (including padding, margin, and other spacing) to have the correct width for the table. */ widthOffset?: number; /** Optional prop to add a test id to the SpreadsheetContainer for QA testing */ qaTestId?: string; }; declare const SpreadsheetSizer: ({ children, customWidth, customHeight, widthOffset, qaTestId, }: SpreadsheetSizerProps) => React.JSX.Element; export default SpreadsheetSizer;