import { IAgent } from './IAgent'; import { AbstractAgent } from './AbstractAgent'; export { AbstractAgent }; export declare const allAgents: IAgent[]; /** * Generates a comma-separated list of agent identifiers for CLI help text. * Returns identifiers in alphabetical order, with 'agentsmd' always first. */ export declare function getAgentIdentifiersForCliHelp(): string;