export declare const FREE_PLAN_ID = 0; export declare const ENTERPRISE_OPENSOURCE_PLAN_ID = 9998; export declare const TRIAL_PLAN_ID = 9999; export declare const START_PLAN_IDS: number[]; export declare const ESSENTIAL_PLAN_IDS: number[]; export declare const PRO_PLAN_IDS: number[]; export declare const ENTERPRISE_PLAN_IDS: number[]; export declare const TRIAL_PLAN_V2_ID = 111111; export declare const FREE_PLAN_V2_ID = 222222; export declare const EXPLORER_PLAN_IDS_V2: number[]; export declare const GROWTH_PLAN_IDS_V2: number[]; export declare const ENTERPRISE_PLAN_IDS_V2: number[]; export declare const PRO_PLAN_IDS_V2: number[]; export declare const isFreePlan: (planId: number) => planId is 0 | 222222; export declare const isTrialPlan: (planId: number) => planId is 9999 | 111111; export declare const isStartPlan: (planId: number) => boolean; export declare const isEssentialPlan: (planId: number) => boolean; export declare const isProPlan: (planId: number) => boolean; export declare const isEnterprisePlan: (planId: number) => boolean; export declare const isPaidPlan: (planId: number) => boolean; export declare const isEnterpriseOpenSourcePlan: (planId: number) => planId is 9998; export declare const isTrialPlanV2: (planId: number) => planId is 111111; export declare const isFreePlanV2: (planId: number) => planId is 222222; export declare const isExplorerPlanV2: (planId: number) => boolean; export declare const isEnterprisePlanV2: (planId: number) => boolean; export declare const isProPlanV2: (planId: number) => boolean; export declare const isProOrEnterprisePlanV2: (planId: number) => boolean;