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