import { Outgoing } from './outgoing'; import { getConfig } from './config'; export declare class OutgoingCloudApi implements Outgoing { private getConfig; constructor(getConfig: getConfig); 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; private uri; }