import { Plan, PlanFeatureValue } from '../../domain/entities/Plan.js'; import { PlanDto } from '../dtos/PlanDto.js'; export declare class PlanMapper { static toDto(plan: Plan, productKey: string, onExpireTransitionToBillingCycleKey?: string): PlanDto; static toDomain(raw: any, featureValues?: PlanFeatureValue[]): Plan; static toPersistence(plan: Plan, productId: number, onExpireTransitionToBillingCycleId?: number): any; } //# sourceMappingURL=PlanMapper.d.ts.map