import type { Source, RegistryIndex, RegistryEntry } from "../types/index.js"; export declare function fetchRegistry(sources: Source[]): Promise; export declare function searchRegistry(index: RegistryIndex, query: string): Array<{ name: string; entry: RegistryEntry; }>;