diff --git a/angular/RestClient/src/app/features/bookings/index.ts b/angular/RestClient/src/app/features/bookings/index.ts
index 2d5e76462fb229fdc01fed8c847df6e598680e67..709cc765a8bf39b141d2487ecb5640a9cada00a5 100644
--- a/angular/RestClient/src/app/features/bookings/index.ts
+++ b/angular/RestClient/src/app/features/bookings/index.ts
@@ -2,4 +2,4 @@ export * from './bookings.routes';
 export * from './booking/booking.component';
 export * from './[DEL] booking-list/booking-list.component';
 export * from './user-booking-list/user-booking-list.component';
-export * from '@features/bookings/types/Booking';
+export type { Booking }from '@features/bookings/types/Booking';
diff --git a/angular/RestClient/src/app/features/hotels/index.ts b/angular/RestClient/src/app/features/hotels/index.ts
index 2640c34ff62bfba540360a5602fd6074cc76f166..1edd43785acca5f5d2690d82b1199ea9e4bb7245 100644
--- a/angular/RestClient/src/app/features/hotels/index.ts
+++ b/angular/RestClient/src/app/features/hotels/index.ts
@@ -1,6 +1,6 @@
 export * from './hotels.routes';
 export * from './hotel-list/hotel-list.component';
 export * from './hotel-register/hotel-register.component';
-export * from '@features/hotels/types/Address';
-export * from '@features/hotels/types/Hotel';
+export type { Address } from '@features/hotels/types/Address';
+export type { Hotel } from '@features/hotels/types/Hotel';
 export * from './types/Room.interface';
diff --git a/angular/RestClient/src/app/features/users/index.ts b/angular/RestClient/src/app/features/users/index.ts
index b40ef49f6d94ab940873be32df9a6c33c290bfe8..75c6214f0f388769e3a9a07d232fbfe7e69d9b93 100644
--- a/angular/RestClient/src/app/features/users/index.ts
+++ b/angular/RestClient/src/app/features/users/index.ts
@@ -2,4 +2,5 @@ export * from './users.routes';
 export * from './main-page/main-page.component';
 export * from './user-form/user-form.component';
 export * from './types/User.interface';
-export * from '@features/users/types/UserFormData';
+import type { UserFormMode, ModeType, UserFormRoute } from '@features/users/types/UserFormData';
+export type { UserFormMode, ModeType, UserFormRoute };