import type { Locale } from '../services/http/types'; export type HouseStaff = { comment: string; email: string; firstName: string; housesList?: string[] | undefined; id: string; lastName: string; locale: Locale; phone: string; type: 'houseStaff'; }; export type HouseStaffPayload = { house_staff: { comment: string; email?: string; first_name: string; last_name: string; locale: Locale; phone: string; }; };