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