import type { FileBoxInterface } from 'file-box'; import * as PUPPET from '@juzi/wechaty-puppet'; export declare function sendTextMessage({ msgId, quoteId, contactId, msg, mqtt, token }: { msgId: string; quoteId?: string; contactId: string; msg: string; token: string; mqtt: any; }): void; export declare function sendFileMessage({ msgId, quoteId, contactId, file, mqtt, token }: { msgId: string; quoteId?: string; contactId: string; file: FileBoxInterface; token: string; mqtt: any; }): Promise; export declare function sendLinkMessage({ msgId, quoteId, contactId, file, linkPayload, mqtt, token }: { msgId: string; quoteId?: string; contactId: string; linkPayload: PUPPET.payloads.UrlLink; file: FileBoxInterface | undefined; token: string; mqtt: any; }): Promise; export declare function sendPostMessage({ msgId, quoteId, contactId, postPayload, mqtt, token }: { msgId: string; quoteId?: string; contactId: string; postPayload: PUPPET.payloads.Post; token: string; mqtt: any; }): Promise; export declare function sendMessage(contactId: string, payLoad: any, token: string, mqtt: any): Promise; //# sourceMappingURL=message.d.ts.map