How to get the effective row counts in dash table with client side filtering on

I have a dash-table which has client side filtering enabled (i.e. filtering=‘native’). Consequently, when the users set filtering conditions in columns headers, the effective row count will change. I want to show this effective row count at the bottom of the table such that the user don’t need to count them manually. However, dash-table exposes does not seem to expose such an property for me to use.

Any idea how I can achieve this goal without resorting to server-side filtering? Thanks in advance.