import { BigDecimal } from '@nadohq/utils'; type HealthType = 'maintenance' | 'initial' | 'unweighted'; interface HealthStatus { health: BigDecimal; assets: BigDecimal; liabilities: BigDecimal; } type HealthStatusByType = Record; interface HealthGroup { spotProductId: number; perpProductId: number; } export type { HealthGroup, HealthStatus, HealthStatusByType, HealthType };