import { SNSClientConfig } from '@aws-sdk/client-sns/dist-types/SNSClient.js'; import { Base_sms } from '../base_sms.cjs'; type T_opt = SNSClientConfig; type T_opt_send = any; declare class Sms extends Base_sms { def: { apiVersion: string; }; constructor(opt: T_opt); send(ccode: string, phone: string, text: string, opt?: T_opt_send): Promise; validate_opt(): true; } export { Sms };