import { Count, Filter, FilterExcludingWhere, Where } from '@loopback/repository'; import { Plan } from '../models'; import { PlanRepository } from '../repositories'; export declare class PlanController { planRepository: PlanRepository; constructor(planRepository: PlanRepository); create(plan: Omit): Promise; count(where?: Where): Promise; find(filter?: Filter): Promise; updateAll(plan: Plan, where?: Where): Promise; findById(id: string, filter?: FilterExcludingWhere): Promise; updateById(id: string, plan: Plan): Promise; replaceById(id: string, plan: Plan): Promise; deleteById(id: string): Promise; }