import { NotePreview } from '@/types/notification'; export type NoteInboxResponse = { total: number; unreadCount: number; list: NotePreview[]; }; export type NoteDetail = { id: number; title: string; content: string; senderName: string; createdAt: string; };