import { Route } from '../../../types/route'; export type SendRoomChatRouteParams = { content: string; roomId?: string; }; export type SendRoomChatRouteResponse = any; export declare class SendRoomChatRoute extends Route { call({ roomId, content }: { roomId: any; content: any; }): Promise>; } //# sourceMappingURL=send-room-chat.d.ts.map