nRF24 large data size handling

Hi all,
Has anyone dealt with sending large data bits via nRf24?
I'm searching for implementation similar to HardwareSerial.

My problem is that I cant deal with received data byte by byte, and am limited to payload size. What is my data is much larger then 32 bytes?

Is there a smart way to work around it?

Please advise.

The hardware limit is 32 bytes. You can send more if you break it up. check this link

Thanks for your reply!