import type { CostTierSpec, ResolveAIProfileOptions, ResolvedAIProfile } from "./types.js"; export interface ResolveAIProfileWithCostAlternativesResult { primary: ResolvedAIProfile; alternativesByCostTier: Array<{ tier: string; resolved: ResolvedAIProfile | null; reason?: string; }>; } /** * Resolve a fixed `profile/choice` and scout alternate choices under other cost-tier caps. */ export declare function resolveAIProfileWithCostAlternatives(input: string, options: ResolveAIProfileOptions & { tiers?: CostTierSpec[]; includePrimaryTier?: boolean; }): Promise; //# sourceMappingURL=resolveAIProfileWithCostAlternatives.d.ts.map