import type { ModelRegistry } from "../model-resolver.js"; export declare const projectAgentsDir: () => string; export declare const personalAgentsDir: () => string; /** Find the file path of a custom agent by name (project first, then global). */ export declare function findAgentFile(name: string): { path: string; location: "project" | "personal"; } | undefined; export declare function getModelLabel(type: string, registry?: ModelRegistry): string;