export declare function getRegistryVersion(): Promise; export declare function getAvailableComponents(): Promise; export declare function getComponentFiles(componentName: string): Promise | null>; /** * Fetches a component's files at a specific historical version using the SHA * stored in the component's registry history. * * Falls back to candidate file names if the history entry has no `files` list * (for entries created before the files field was added to history). */ export declare function getComponentFilesAtVersion(componentName: string, version: string): Promise | null>; export declare function getComponentMeta(componentName: string): Promise<{ version: string; status: string; added: string; breakingChanges: string[]; } | null>; export declare function getComponentDependencies(componentName: string): Promise; export declare function getGlobalCss(): Promise; //# sourceMappingURL=registry.d.ts.map