export declare const cloudConfigPlans: readonly ["Hobby", "Core", "Pro", "Team", "Enterprise"]; export declare const planLabels: { readonly oss: "OSS"; readonly "cloud:hobby": "Hobby"; readonly "cloud:core": "Core"; readonly "cloud:pro": "Pro"; readonly "cloud:team": "Team"; readonly "cloud:enterprise": "Enterprise"; readonly "self-hosted:pro": "Pro (self-hosted)"; readonly "self-hosted:enterprise": "Enterprise (self-hosted)"; }; export type Plan = keyof typeof planLabels; export declare const plans: Plan[]; export declare const isCloudPlan: (plan?: Plan) => boolean | undefined; export declare const isSelfHostedPlan: (plan?: Plan) => boolean | undefined; export declare const isPlan: (value: string) => value is Plan; //# sourceMappingURL=plans.d.ts.map