import { type Observable, type WebChatActivity } from 'botframework-webchat-core'; import useWebChatAPIContext from './internal/useWebChatAPIContext'; export default function usePostActivity(): (activity: WebChatActivity) => Observable { return useWebChatAPIContext().postActivity; }