import { InvoicingMRRDataPoint, InvoicingSubscription } from '@zeniai/client-epic-state'; type InvoicingSubscriptionWithProductCode = InvoicingSubscription & { productCode?: string; }; export interface SubscriptionsBreakdownPanelProps { currencyCode?: string; mrr?: InvoicingMRRDataPoint[]; recentSubscriptions?: InvoicingSubscriptionWithProductCode[]; onSubscriptionClick: (subscriptionId: string) => void; } /** * Overview "Row 6" — a tab switcher between the Recent Subscriptions table and * the Monthly MRR Breakdown chart. Extracted from InvoicingOverviewPage so the * page composes panels instead of inlining them. */ export declare function SubscriptionsBreakdownPanel({ currencyCode, mrr, onSubscriptionClick, recentSubscriptions, }: Readonly): import("react/jsx-runtime").JSX.Element; export default SubscriptionsBreakdownPanel;