import React from 'react'; import type { PaginationProps, TableRowData, TdBaseTableProps } from '../type'; export default function usePagination(props: TdBaseTableProps, tableContentRef: React.RefObject): { isPaginateData: boolean; dataSource: TableRowData[]; innerPagination: PaginationProps; renderPagination: () => React.JSX.Element; };