export declare const stripePriceMappingTypeArray: readonly ["plan", "solution"]; export type StripePriceMappingType = (typeof stripePriceMappingTypeArray)[number]; export declare class StripePriceMapping { priceId: string; internalPlanId: string; validFrom: Date | null; validUntil: Date | null; isActivePrice: boolean; type: StripePriceMappingType; }