export type LookupResult = { source: 'native' | 'micro-utility' | 'preferred'; module_name: string; type: string; description?: string; documentation?: string; replacement?: string; url?: string; }; export declare function get_suggestions_for_package(pkg: string): string | undefined; export declare function lookup_replacements(query: string): LookupResult[];