import * as react_jsx_runtime from 'react/jsx-runtime'; interface PropertyCashflowDoughnutChartProps { /** Total rental income or inflows in dollars */ income?: number | null; /** Total expenses or outflows in dollars */ expenses?: number | 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 PropertyCashflowDoughnutChart({ income, expenses, title, showLegend, height, width, className, isLoading, }: PropertyCashflowDoughnutChartProps): react_jsx_runtime.JSX.Element; export { PropertyCashflowDoughnutChart, type PropertyCashflowDoughnutChartProps };