import { loadConfig } from "../../config/config.js"; type IMessageRuntimeSendOpts = { config?: ReturnType; mediaUrl?: string; mediaLocalRoots?: readonly string[]; accountId?: string; replyToId?: string; }; export declare const runtimeSend: { sendMessage: (to: string, text: string, opts?: IMessageRuntimeSendOpts) => Promise; }; export {};