import { type IMessageRpcClient } from "./client.js"; import { type IMessageService } from "./targets.js"; export type IMessageSendOpts = { cliPath?: string; dbPath?: string; service?: IMessageService; region?: string; accountId?: string; mediaUrl?: string; maxBytes?: number; timeoutMs?: number; chatId?: number; client?: IMessageRpcClient; }; export type IMessageSendResult = { messageId: string; }; export declare function sendMessageIMessage(to: string, text: string, opts?: IMessageSendOpts): Promise;