import * as react_jsx_runtime from 'react/jsx-runtime'; interface ConnectionSummaryDataPoint { /** ISO date string e.g. "2024-01-01" */ date: string; /** Total client count */ all: number; /** Clients with bank connected */ bankConnected: number; /** Clients with property connected */ propertyConnected: number; /** Clients with no connection */ notConnected: number; } type ConnectionSummaryPeriod = 3 | 6 | 12; interface BackofficeConnectionsChartProps { chartData?: ConnectionSummaryDataPoint[] | null; title?: string; showLegend?: boolean; legendPosition?: "top" | "bottom"; showXAxis?: boolean; showYAxis?: boolean; defaultPeriod?: ConnectionSummaryPeriod; height?: number; width?: number | string; className?: string; isLoading?: boolean; } declare function BackofficeConnectionsChart({ chartData, title, showLegend, legendPosition, showXAxis, showYAxis, defaultPeriod, height, width, className, isLoading, }: BackofficeConnectionsChartProps): react_jsx_runtime.JSX.Element; export { BackofficeConnectionsChart, type BackofficeConnectionsChartProps, type ConnectionSummaryDataPoint, type ConnectionSummaryPeriod };