import Service from "../../base/service"; import { ServiceOptions } from "../../base/types"; interface SendSmsParams { PhoneNumbers: string; TemplateParam: string; Sign: string; Tag: string; SmsAccount: string; TemplateID: string; } interface SendSmsResult { MessageID: string[]; } export declare class SmsService extends Service { constructor(options?: ServiceOptions); SendSms: (requestData: SendSmsParams, params?: (import("../../base/types").FetchParams & import("axios").AxiosRequestConfig) | undefined, options?: import("../../base/types").ServiceOptionsBase | undefined) => Promise>; } export declare const defaultService: SmsService; export {};