interface DomainEntry { broad: string | null; specialized: string[]; } type AgentRegistryType = Record; export declare const AGENT_REGISTRY: AgentRegistryType; export declare function getAllAgents(): string[]; export declare function getBroadExperts(): string[]; export declare function getSpecializedExperts(): string[]; export declare function getAgentsByDomain(domain: string): { broad?: string; specialized: string[]; }; export {}; //# sourceMappingURL=registry.d.ts.map