interface UseTableDataProps { rows: T[]; isLoading?: boolean; error?: Error | null; isFetchingNextPage?: boolean; areAllRowsLoaded?: boolean; } export declare const useTableData: ({ rows, isLoading, error, isFetchingNextPage, areAllRowsLoaded }: UseTableDataProps) => { isDelayedFetchingNextPage: boolean; lastItemIndex: number; areTotalRowsNotFillingHeight: boolean; itemsCount: number; isError: boolean; tableLoading: boolean; tableError: boolean; tableEmpty: boolean; hasTimeoutError: boolean; showNoDataView: boolean; }; export {};