export interface ISMSOptions { to: string; message: string; } export declare const sendSMSDirect: (smsOptions: ISMSOptions) => Promise;