declare type Ritual = { title: string; answers: string[]; }; declare type Task = { title: string; subtasks: string[]; notes: string; }; declare type Routine = { title: string; scheduled_time: string; scheduled_duration: string; completed: boolean; notes: string; }; export declare type DailyJournal = { notes: string; rituals: Ritual[]; routine: { mental: Routine[]; physical: Routine[]; }; tasks: Task[]; }; export {};