import { SendNtfyToolInput, SendNtfyToolResponse } from "./types.js";
/**
 * Process and send a notification via ntfy
 * Includes rate limiting, message validation, and retry logic
 *
 * @param params - Parameters for the ntfy message
 * @returns Response with notification details
 */
export declare const processNtfyMessage: (params: SendNtfyToolInput) => Promise<SendNtfyToolResponse>;
