import * as react_jsx_runtime from 'react/jsx-runtime'; interface LiabilitySegment { label: string; /** Value in dollars */ value: number; } interface TransactionsLiabilitiesBreakdownChartProps { segments?: LiabilitySegment[] | null; title?: string; showLegend?: boolean; /** Chart canvas height in pixels */ height?: number; /** Card max-width in pixels or CSS string */ width?: number | string; className?: string; /** Show skeleton loading state instead of the chart */ isLoading?: boolean; } declare function TransactionsLiabilitiesBreakdownChart({ segments, title, showLegend, height, width, className, isLoading, }: TransactionsLiabilitiesBreakdownChartProps): react_jsx_runtime.JSX.Element; export { type LiabilitySegment, TransactionsLiabilitiesBreakdownChart, type TransactionsLiabilitiesBreakdownChartProps };