import { Channel, ChannelOpts } from '../core/types.js'; export declare class HttpChannel implements Channel { name: string; private server; private wss; private codexBridgeWss; private opts; private _connected; constructor(opts: ChannelOpts); connect(): Promise; disconnect(): Promise; isConnected(): boolean; ownsJid(jid: string): boolean; sendMessage(jid: string, text: string): Promise; sendFile(jid: string, filePath: string, caption?: string): Promise; } //# sourceMappingURL=http.d.ts.map