import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import { IPromptResponse, Tags } from '../../types';
export declare const registerSendTemplateMessage: (server: McpServer, tags: Tags[]) => void;
export declare const sendTemplateMessageHandler: ({ recipient, channel, templateId, language, parameters, appId, sender, region }: {
    recipient: string;
    channel: string[];
    templateId: string;
    language?: string;
    parameters?: Record<string, string>;
    appId?: string;
    sender?: string;
    region?: string;
}) => Promise<IPromptResponse>;
