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