import type { ActionBreakdown } from './ActionBreakdown'; import type { MentorBreakdown } from './MentorBreakdown'; import type { ProviderBreakdown } from './ProviderBreakdown'; /** * Detailed breakdown of costs. */ export type Breakdown = { by_provider?: Array; by_mentor?: Array; by_action?: Array; };