import type { AnyResourceManagerDefinition } from "./types.js"; export type DiscoveredResourceManager = { name: string; path: string; source: "project" | "global"; }; export declare function resourceManagerSearchDirs(options: { cwd: string; homeDir?: string; }): { dir: string; source: DiscoveredResourceManager["source"]; }[]; export declare function resourceManagerFileStem(filePath: string): string; export declare function loadResourceManagerFile(filePath: string): Promise; export declare function discoverResourceManagers(options: { cwd: string; homeDir?: string; }): Promise; export declare function loadDiscoveredResourceManagers(options: { cwd: string; homeDir?: string; }): Promise;