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