export type PriceType = 'stay' | 'nightly' export type PaidByType = 'lecollectionist' | 'owner' export type OperationalCostType = | 'housekeeping' | 'housekeeping_checkout' | 'linen_change' | 'operational_package' | 'check_in_check_out' export type OperationalCost = { comment?: string | undefined id: string kind: OperationalCostType paidBy: PaidByType price: number | null priceType: PriceType type: 'operationalCost' }