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