import type { PropertyUnit } from '../domain/property' export interface IUnitProvider { getByPropertyId(propertyId: string): Promise getById(unitId: string): Promise update(unitId: string, data: Partial): Promise }