interface Todo {
  _id: string;
  title: string;
  description: string;
  done: boolean;
}

export { Todo };
