import { PlansService } from '../services/plans.service'; import { PlanResponseDto, PlanDetailResponseDto } from '../dto/plan-response.dto'; export declare class PlansController { private readonly plansService; constructor(plansService: PlansService); findAll(): Promise; findOne(id: string): Promise; }