import { InternalExpandableRowsProps } from '../expandable-rows/expandable-rows-utils'; import { TableProps, TableRow } from '../interfaces'; export declare function useProgressiveLoadingProps({ getLoadingStatus, expandableRows }: { getLoadingStatus?: (item: null | T) => TableProps.LoadingStatus; expandableRows: InternalExpandableRowsProps; }): { allRows: TableRow[]; };