Disable Send Button in Chat Until Response Received

[Problem/Question]
.We currently utilize the createGroupChannelFragment to display all chat channels to our users. Our scenario involves user interaction within the chat screen, particularly after sending a chat message.

We must temporarily turn off the chat send button immediately after a user sends a message, and it should remain disabled until a response is received from the opposing chat participant. This prevents users from sending multiple messages before receiving a reply, which aligns with our business requirements.

Is there an existing property or method within the SDK—accessed via the useSendbirdChat() hook—that allows us to modify the send button’s behavior based on the reception of a response from the chat partner? We are looking for a way to programmatically control the send button’s enabled/disabled state in response to chat interactions.