type CreateClientReturn = ReturnType; type PageNode = ReturnType; export declare function createMessaging(page: PageNode): { /** Send a Messenger DM. */ send(recipientPsid: string, message: { text?: string; attachmentUrl?: string; attachmentType?: string; }): Promise<{ messageId: string; recipientId: string; }>; /** Reply to a specific message in a conversation. */ reply(recipientPsid: string, replyToMid: string, text: string): Promise<{ messageId: string; recipientId: string; }>; }; export {}; //# sourceMappingURL=messaging.d.ts.map