import { Count, Filter, FilterExcludingWhere, Where } from '@loopback/repository'; import { TodoList } from '../models'; import { TodoListRepository } from '../repositories'; export declare class TodoListController { todoListRepository: TodoListRepository; constructor(todoListRepository: TodoListRepository); create(todoList: Omit): Promise; count(where?: Where): Promise; find(filter?: Filter): Promise; updateAll(todoList: TodoList, where?: Where): Promise; findById(id: number, filter?: FilterExcludingWhere): Promise; updateById(id: number, todoList: TodoList): Promise; deleteById(id: number): Promise; replaceById(id: number, todoList: TodoList): Promise; }