import type { DepartureProfitabilityRow, ProductProfitabilityRow } from "../../index.js"; export declare function TravelerBreakdownDialog({ departure, currency, onClose, }: { departure: { id: string; label: string; } | null; currency: string; onClose: () => void; }): import("react").JSX.Element; export declare function KpiCard({ label, value, accent, }: { label: string; value: string; accent?: "positive" | "negative"; }): import("react").JSX.Element; export declare function DepartureTable({ rows, currency, onSelect, }: { rows: DepartureProfitabilityRow[]; currency: string; onSelect?: (row: DepartureProfitabilityRow) => void; }): import("react").JSX.Element; export declare function ProductTable({ rows, currency, }: { rows: ProductProfitabilityRow[]; currency: string; }): import("react").JSX.Element;