import type { AgentRegistry } from '../../types/agent.js'; /** * Resolves the absolute path to `registry/agents.json` relative to the * package root. * * @returns Absolute path to the registry file. */ export declare const getRegistryPath: () => string; /** * Loads and validates `registry/agents.json` against the zod schema. * Throws a `ZodError` if validation fails. * * @param path - Optional override path for testing. * @returns The validated registry object. * * @example * ```ts * const registry = loadRegistry(); * console.log(registry.agents[0].name); // "Clancy" * ``` */ export declare const loadRegistry: (path?: string) => AgentRegistry; //# sourceMappingURL=registry.d.ts.map