declare type FeatureType = boolean | number; declare type FeaturePricing = { text: string; featureGroup?: true; launchPlan?: FeatureType; growthPlan?: FeatureType; scalePlan?: FeatureType; }; export declare const featurePricing: FeaturePricing[]; export {};