import { Count, Filter, Where } from '@loopback/repository'; import { Todo, TodoList } from '../models'; import { TodoListRepository } from '../repositories'; export declare class TodoListTodoController { protected todoListRepository: TodoListRepository; constructor(todoListRepository: TodoListRepository); create(id: typeof TodoList.prototype.id, todo: Omit): Promise; find(id: number, filter?: Filter): Promise; patch(id: number, todo: Partial, where?: Where): Promise; delete(id: number, where?: Where): Promise; }