/** * 프로필 관련 타입 정의 */ export interface ProfileFormData { userName: string; email: string; deptName: string; positionName: string; locale: string; } export interface ProfileModalState { isOpen: boolean; formData: ProfileFormData; selectedImage: string; selectedFile: File | null; isSaving: boolean; }