/**
 * Centralized Model Configuration
 *
 * Single source of truth for model versions currently used across the system.
 * Update versions here to change them everywhere.
 */
export declare const CURRENT_MODELS: {
    readonly anthropic: "claude-sonnet-4-6";
    readonly anthropic_opus: "claude-opus-4-7";
    readonly anthropic_haiku: "claude-haiku-4-5-20251001";
    readonly openai: "gpt-5.4";
    readonly google: "gemini-3.1-pro-preview";
    readonly google_flash: "gemini-3-flash-preview";
    readonly kimi: "kimi-k2.5";
    readonly alibaba: "qwen3.6-plus";
    readonly xai: "grok-4";
    readonly host: "host";
    readonly openrouter: "anthropic/claude-haiku-4.5";
    readonly custom: "gpt-5.4";
    readonly amazon_bedrock: "global.anthropic.claude-sonnet-4-6";
    readonly copilot: "claude-sonnet-4.6";
};
/**
 * Get current model for a provider
 */
export declare function getCurrentModel(provider: keyof typeof CURRENT_MODELS): string;
//# sourceMappingURL=model-config.d.ts.map