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