import type { ModelContract } from "./types.js"; export declare const MODEL_CONTRACTS: readonly ModelContract[]; export declare const RETIRED_MODEL_ALIASES: readonly string[]; export declare function modelContract(name: string | undefined): ModelContract | undefined; export declare function isRetiredModelAlias(name: string | undefined): boolean;