type BedType = 'balinese' | 'bunk' | 'mezzanine'; export type Equipment = { areaId: string; bedSize: string | null; bedType: BedType | null; brandId: string | null; brandModel: number | null; capacity: number | null; closedHearth: boolean | null; comment: string | null; createdAt: string; equipmentTypeId: string; functional: boolean | null; heatingType: string | null; id: string; poolId: string | null; position: number; quantity: number; type: 'equipment'; updatedAt: string; }; export type EquipmentPayload = { equipment: { bed_size?: string; bed_type?: string | null; brand_id?: string | null; brand_model?: string; capacity?: number; closed_hearth?: boolean; comment?: string; equipment_type_id?: string; functional?: boolean | null; heating_type?: string | null; pool_id?: string; position?: number; quantity?: number; }; }; export {};