import type { Message, MessageTypesContent } from '../../types/index.ts'; import { ConnectionSender, type ConnectionSenderConstructor, type Sender } from '../sender.ts'; export declare class CustomGatewayHttpSender extends ConnectionSender implements Sender { private readonly baseurl; private readonly token; constructor(options: ConstructorParameters[0]); sendMessage(message: Message): Promise; sendCommand(): Promise; static login: { (bot: string | import("../../index.ts").Identity, accessKey: string, tenantId?: string): CustomGatewayHttpSender; (token: string, tenantId?: string): CustomGatewayHttpSender; }; } //# sourceMappingURL=customgatewaysender.d.ts.map