import { Config } from '@alicloud/pop-core'; import { Base_sms } from '../base_sms.js'; type T_opt = Partial | Config; declare class Sms extends Base_sms { def: T_opt; constructor(opt: T_opt); send(ccode: string, phone: string, content: { sign: string; template_id: string; template_arg: any; }, opt?: Config | any): Promise; validate_opt(): true; } export { Sms, T_opt };