export type RouteResult = { agent: string | null; skill: string | null; confidence: "high" | "medium" | "low"; reason: string; }; export declare function routeIntent(message: string): RouteResult; export declare function loadAgentContent(agentName: string): string | null; export declare function loadSkillContent(skillName: string): string | null; export declare function buildIntentRouterContext(): string;