export type NavigationView = 'notebooks' | 'agents' | 'settings' | 'shared' | 'reminders' | 'trash'; export type AITone = 'Professional' | 'Creative' | 'Academic' | 'Casual'; export type AITab = 'discussion' | 'actions' | 'resources'; export type SettingsTab = 'general' | 'ai' | 'appearance' | 'profile' | 'data' | 'mcp' | 'about'; export interface Tag { id: string; label: string; type: 'ai' | 'user'; } export interface Note { id: string; carnetId: string; title: string; content: string; imageUrl: string; date: string; tags: Tag[]; isPinned?: boolean; isDeleted?: boolean; deletedAt?: string; } export interface Carnet { id: string; name: string; initial: string; type: 'Private' | 'Project' | 'Shared'; isPrivate?: boolean; parentId?: string; isDeleted?: boolean; deletedAt?: string; }