import { Repository } from 'typeorm'; import { Plan } from '../entities/plan.entity'; import { PlanResponseDto, PlanDetailResponseDto } from '../dto/plan-response.dto'; export declare class PlansService { private readonly planRepo; constructor(planRepo: Repository); findAll(): Promise; findOne(id: string): Promise; findBySlug(slug: string): Promise; private toResponseDto; private toDetailResponseDto; private extractFeatureDescriptions; }