/** * Companion daily activity schedule * Matches group schedule for inbox activity status display */ export declare const ACTIVITIES: readonly ["RESTING", "PRACTICING", "SHORT_BREAK", "RESTING_AT_HOME"]; export type Activity = (typeof ACTIVITIES)[number]; interface ScheduleSlot { startHour: number; endHour: number; activity: Activity; } export declare const DAILY_SCHEDULE: ScheduleSlot[]; export {}; //# sourceMappingURL=activity.d.ts.map