import { TodoReminderItem } from './todo-reminder-item'; interface TodoAuthorInterface { id: number; name: string; surname: string; title: string; } export declare class TodoItem { author: TodoAuthorInterface; crypted: boolean; done: boolean; reminder: TodoReminderItem; scheduleUtc: number; text: string; type: 'call' | ''; constructor(data?: any); valid(): boolean; } export {};