import { IAgent, IAgentConfig } from '../agents/IAgent'; /** * Maps raw agent configuration keys to their corresponding agent identifiers. * * This function normalizes configuration keys by matching them against agent identifiers * and display names. It performs both exact matching (case-insensitive) with agent * identifiers and substring matching (case-insensitive) with agent display names * for backwards compatibility. * * @param raw Raw agent configurations with user-provided keys * @param agents Array of all available agents * @returns Record with agent identifiers as keys and their configurations as values */ export declare function mapRawAgentConfigs(raw: Record, agents: IAgent[]): Record;