import ReactToExcel from 'react-html-table-to-excel
This library run perfectly in web but unable to run in android, I'm not sure if the android could not detect the library or this library is not suitable for android. Can someone please me help and thanks!

What you have used is a React.js package. It cannot be used in React-Native.
To PDF : If you want to convert your data to pdf in react native you can use the following package.
https://www.npmjs.com/package/react-native-html-to-pdf
Table to excel: You don't have to use a package for a data file to be used in Excel. You can create a .json file which can be imported to excel.
But if you really want to create an excel sheet, you can use XLSX library with react-native-fs package.
Sample code is below
Hope this helps