import { SendMessageResponse, SendMessageInput } from '../types'; export declare const useSendMessage: () => [(variables: SendMessageInput) => Promise<[Error, SendMessageResponse]>, { loading: boolean; error: boolean; data: SendMessageResponse | null; success: boolean; }];