import { Config } from '@alicloud/pop-core'; import { Base_email } from '../base_email.cjs'; interface T_opt_send { AccountName?: string; AddressType?: number; ReplyToAddress?: boolean; ToAddress?: string; Subject?: string; HtmlBody?: string; } interface T_opt extends Partial { } declare class Email extends Base_email { def: T_opt; constructor(opt: T_opt); send(from: string, to: string, subject: string, content?: string, opt?: T_opt_send): Promise | any; validate_opt(): true; } export { Email, T_opt, T_opt_send };