/** * @license * Copyright 2025 OSAgent OC * SPDX-License-Identifier: Apache-2.0 */ import type { RegisteredAgent } from './types.js'; declare const ORCHESTRATOR_AGENTS: RegisteredAgent[]; declare const FRONTEND_SPECIALISTS: RegisteredAgent[]; declare const BACKEND_SPECIALISTS: RegisteredAgent[]; declare const QUALITY_SPECIALISTS: RegisteredAgent[]; declare const INFRASTRUCTURE_SPECIALISTS: RegisteredAgent[]; declare const IMPROVEMENT_SPECIALISTS: RegisteredAgent[]; declare const UTILITY_AGENTS: RegisteredAgent[]; declare const PROJECT_AGENTS: RegisteredAgent[]; export declare const BUILTIN_AGENTS: RegisteredAgent[]; export { ORCHESTRATOR_AGENTS, FRONTEND_SPECIALISTS, BACKEND_SPECIALISTS, QUALITY_SPECIALISTS, INFRASTRUCTURE_SPECIALISTS, IMPROVEMENT_SPECIALISTS, UTILITY_AGENTS, PROJECT_AGENTS, };