import type { Subscription } from '../base.js'; declare const planCatalogs: readonly ["builder", "cli", "legacy"]; declare const stages: readonly ["dev", "prod"]; export interface SubscriptionProductMatch { catalog: (typeof planCatalogs)[number]; key: string; label: string; priceKey?: string; stage: (typeof stages)[number]; } export declare function resolveSubscriptionProduct(subscription?: Pick): null | SubscriptionProductMatch; export {};