/// import './Todo.less'; import { DefaultElement, DefaultRenderElementProps } from "../../common/type"; export interface TodoElement extends DefaultElement { checked: boolean; comment: string; remindDate?: { repeatMode: 'weekday' | 'weekend' | 'everyday' | 'monthly' | 'noRepeat'; time: number; }; todoType?: 'expired' | 'todo' | 'incomplete'; commentVisiable?: boolean; optionVisiable?: boolean; dpVisiable?: boolean; } export default function TodoElement(props: DefaultRenderElementProps): JSX.Element;