export declare type TodoItem = { createdOn: string; id: string; isCompleted: boolean; parent?: string; title: string; }; export declare type TodoItemList = TodoItem[];