import { TableProps } from 'antd'; import { default as React } from 'react'; import { OnChainTableProps } from '.'; declare const useDynamicHeight: ({ hideFooter, contentRef, tableRef, scroll, fullScreenMinusHeight, scrollUpdate, onTableHeightChange, }: { scroll: TableProps["scroll"]; hideFooter: boolean | undefined; fullScreenMinusHeight?: number; contentRef: React.MutableRefObject; tableRef: React.MutableRefObject; onTableHeightChange: OnChainTableProps["onTableHeightChange"]; scrollUpdate?: (isFullscreen: boolean, autoHeight: number) => void; }, deps: boolean) => number; export { useDynamicHeight };