import { ToolHandler } from "./types.js";
export interface SendMessageArgs {
    /** Username of the recipient */
    recipient: string;
    /** Subject line of the message (1-100 chars) */
    subject: string;
    /** Message content in markdown format (max 10000 chars) */
    content: string;
}
export declare const handleSendMessage: ToolHandler<SendMessageArgs>;
