/// interface Props { data: any; handleResetBiometric: () => void; handleResetPassword: (email: string) => void; handleLogout: () => void; handleUpdateProfile: any; handleUploadAvatar: any; avatarHistory: string[]; } declare const PersonalProfile: ({ data, handleResetBiometric, handleResetPassword, handleLogout, handleUpdateProfile, handleUploadAvatar, avatarHistory, }: Props) => JSX.Element; export default PersonalProfile;