/// type TaskStatus = 0 | 1; type TaskItem = string | [string, TaskStatus] | [string, TaskItem[]]; export interface TaskListProps { items: TaskItem[]; } export default function TaskList(props: TaskListProps): JSX.Element; export {};