import { type ModelIntent } from '../agent-config/index.js'; import { type Config } from './schema.js'; export interface ResolvedModelIntent { intent: ModelIntent; model: string; fallbacks: string[]; } export declare function resolveEffectiveModelIntents(config: Config, agentId: string): Map; export declare function resolveModelIntentRef(config: Config, agentId: string, intent: ModelIntent): string | undefined; export declare function resolveModelSelector(config: Config, agentId: string, selector: string): string;