import { proteus as ProtobufOTR } from '@wireapp/protocol-messaging/web/otr'; import { MessageSendingStatus } from '../conversation/'; import { HttpClient } from '../http/'; export declare class BroadcastAPI { private readonly client; constructor(client: HttpClient); static readonly URL: { BROADCAST: string; BROADCAST_FEDERATED: string; }; /** * Broadcast an encrypted message to all team members and all contacts in federated environments * @param sendingClientId The sender's client ID * @param messageData The message content * @see https://staging-nginz-https.zinfra.io/swagger-ui/tab.html#!/postOtrBroadcast */ postBroadcastMessage(sendingClientId: string, messageData: ProtobufOTR.QualifiedNewOtrMessage): Promise; } //# sourceMappingURL=BroadcastAPI.d.ts.map