export declare const TierIds: readonly ["tier-0-250", "tier-251-750", "tier-751-1500", "tier-1501-3000", "tier-3001-5000", "tier-5001-7500", "tier-7501-10000", "tier-10001-15000", "tier-15001-20000", "tier-20001-25000", "tier-25001-35000", "tier-35001-50000", "tier-50001-plus"]; export type TierId = (typeof TierIds)[number]; export type TierConfig = { name: string; min: number; max: number; monthlyPrice: number; }; export declare const ASSISTANT_TIER_OVERAGE_PRICE_PER_CREDIT = 0.25; export declare const ASSISTANT_TIERS: Record;