import * as React from 'react'; import { TodoItemList } from './'; export interface TodoProps { id: string; todoItemList?: TodoItemList; title?: { id: string; text: string; } | { id: string; text: string; type: number; }; } export declare const Todo: React.FC;