/** * Loader factory for auto-detecting file format * Selects appropriate loader based on file extension */ import type { AgentDefinition, ToolDefinition } from '../schemas'; export declare class LoaderFactory { private yamlLoader; private markdownLoader; /** * Load agent from file, auto-detecting format */ loadAgent(filePath: string): Promise; /** * Load tool from file, auto-detecting format */ loadTool(filePath: string): Promise; } //# sourceMappingURL=loader-factory.d.ts.map