import { PublishCommandInput, PublishCommandOutput } from "@aws-sdk/client-sns";
/**
 * Envía un SMS a un número de teléfono.
 */
export declare function sendSMS(phoneNumber: string, message: string, options?: Omit<PublishCommandInput, "PhoneNumber" | "Message">): Promise<PublishCommandOutput>;
/**
 * Publica un mensaje en un topic SNS.
 */
export declare function publishTopic(topicArn: string, message: string, options?: Omit<PublishCommandInput, "TopicArn" | "Message">): Promise<PublishCommandOutput>;
