import { SendMessageResponse, SendMessageInput } from '../types'; interface SendMessageInputCurried { apiKey: string; apiSecret: string; subscriptionId: string; } export declare const sendMessage: ({ apiKey, apiSecret, subscriptionId, }: SendMessageInputCurried) => ({ characters }: SendMessageInput) => Promise; export {};