import type { DepartureProfitabilityReport } from "../../index.js"; export declare function serviceTypeChart(departures: DepartureProfitabilityReport | undefined, baseMode: boolean, activeCurrency: string, labels: Record): { serviceType: string; label: string; amount: number; fill: string | undefined; }[]; export declare function Kpi({ label, value, accent, }: { label: string; value: string; accent?: "positive" | "negative"; }): import("react").JSX.Element;