import type { MsgContext } from "../auto-reply/templating.js"; import type { BotConfig } from "../config/config.js"; export type LinkUnderstandingResult = { urls: string[]; outputs: string[]; }; export declare function runLinkUnderstanding(params: { cfg: BotConfig; ctx: MsgContext; message?: string; }): Promise;