import * as react_jsx_runtime from 'react/jsx-runtime'; interface PropertyDebtEquityDoughnutChartProps { /** Current property estimate value in dollars */ estimateValue?: number | null; /** Outstanding debt (mortgage) in dollars */ debtValue?: 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 PropertyDebtEquityDoughnutChart({ estimateValue, debtValue, title, showLegend, height, width, className, isLoading, }: PropertyDebtEquityDoughnutChartProps): react_jsx_runtime.JSX.Element; export { PropertyDebtEquityDoughnutChart, type PropertyDebtEquityDoughnutChartProps };