import type { AIProfileChoice, AIProfileDefinition, AIProfileWarning, AIProfilesRegistry, CostCapPer1M, ModelsCatalogJson, PreferOpenRouterInput, ResolvedAIProfile } from "./types.js"; interface BuildResolvedProfileInput { input: string; profile: AIProfileDefinition; choice: AIProfileChoice; choiceKey: string; registry: AIProfilesRegistry; loaderWarnings?: AIProfileWarning[]; preferOpenRouter?: PreferOpenRouterInput; catalog?: ModelsCatalogJson; costCapApplied?: CostCapPer1M; includeCatalog?: boolean; includeCatalogEntry?: boolean; } export declare function buildResolvedProfile(params: BuildResolvedProfileInput): ResolvedAIProfile; export {}; //# sourceMappingURL=buildResolvedProfile.d.ts.map