export declare const devPlanIds: { startup: string; business: string; essential: string; growth: string; essential_new: string; professional: string; cli_founder: string; cli_founder_30: string; cli_founder_50: string; enterprise: string; }; export declare const prodPlanIds: { startup: string; business: string; essential: string; growth: string; essential_new: string; professional: string; cli_founder: string; cli_founder_30: string; cli_founder_50: string; enterprise: string; }; export declare type PlanIds = typeof prodPlanIds; export declare const getPlanEnvironment: (stage: "dev" | "prod") => { startup: string; business: string; essential: string; growth: string; essential_new: string; professional: string; cli_founder: string; cli_founder_30: string; cli_founder_50: string; enterprise: string; }; export declare const getEssentialPlanIds: (stage: "dev" | "prod") => Pick<{ startup: string; business: string; essential: string; growth: string; essential_new: string; professional: string; cli_founder: string; cli_founder_30: string; cli_founder_50: string; enterprise: string; }, "startup" | "essential" | "essential_new">; export declare const getCLIPlanIds: (stage: "dev" | "prod") => Pick<{ startup: string; business: string; essential: string; growth: string; essential_new: string; professional: string; cli_founder: string; cli_founder_30: string; cli_founder_50: string; enterprise: string; }, "cli_founder" | "cli_founder_30" | "cli_founder_50">; export declare const getProfessionalPlanIds: (stage: "dev" | "prod") => Pick<{ startup: string; business: string; essential: string; growth: string; essential_new: string; professional: string; cli_founder: string; cli_founder_30: string; cli_founder_50: string; enterprise: string; }, "business" | "growth" | "professional" | "cli_founder" | "cli_founder_30" | "cli_founder_50">; export declare const getEnterprisePlanIds: (stage: "dev" | "prod") => Pick<{ startup: string; business: string; essential: string; growth: string; essential_new: string; professional: string; cli_founder: string; cli_founder_30: string; cli_founder_50: string; enterprise: string; }, "enterprise">;