import type { ExpandedModuleConfig } from "./config/config-parser"; export interface OutdatedModule { name: string; current: string; latest: string; } export declare function fetchLatestVersion(packageName: string): Promise; export declare function checkOutdatedModules(modules: Record): Promise; export declare function warnOutdatedModules(outdated: OutdatedModule[]): void;