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