export interface Outgoing { sendMany(phone: string, messages: object[]): Promise; sendOne(phone: string, message: object): Promise; send(phone: string, message: object): Promise; sendHttp(phone: string, url: string, header: string, token: string, message: object): Promise; }