import { Count, Filter, Where } from '@loopback/repository'; import { Attendee, Event } from '../models'; import { EventRepository } from '../repositories'; export declare class EventAttendeeController { protected eventRepository: EventRepository; constructor(eventRepository: EventRepository); find(id: string, filter?: Filter): Promise; create(id: typeof Event.prototype.id, attendee: Omit): Promise; patch(id: string, attendee: Partial, where?: Where): Promise; delete(id: string, where?: Where): Promise; }