export interface ProjectDataLogType { type: 'teacher' | 'student'; id: number; organ: null | string; read: boolean; avatar: string; name: string; } declare const getProjectDataLog: (id: number) => Promise<{ list: ProjectDataLogType[]; }>; export { getProjectDataLog };