interface IHilinkSms { sms: (message: string, recipient: string | string[]) => Promise; destroy: () => void; } export default IHilinkSms;