import { Room, Contact } from 'wechaty'; import type * as types from '../types/mod.js'; type RoomTalkerFunction = (room: Room, contact?: Contact) => types.TalkerMessage | Promise; type RoomTalkerOption = types.TalkerMessage | RoomTalkerFunction; export type RoomTalkerOptions = RoomTalkerOption | RoomTalkerOption[]; export declare function roomTalker(options?: RoomTalkerOptions): (() => undefined) | ((rooms: Room | Room[], contacts?: Contact | Contact[], mustacheView?: T) => Promise); export {}; //# sourceMappingURL=room-talker.d.ts.map