import * as react_jsx_runtime from 'react/jsx-runtime'; interface EmailEngagementPoint { /** ISO date string e.g. "2026-07-15" */ x: string; delivered: number; opened: number; clicked: number; } interface EmailEngagementChartProps { data: EmailEngagementPoint[]; title?: string; /** Chart canvas height in pixels */ height?: number; width?: number | string; className?: string; /** Show or hide the legend */ showLegend?: boolean; } declare function EmailEngagementChart({ data: points, title, height, width, className, showLegend, }: EmailEngagementChartProps): react_jsx_runtime.JSX.Element; export { EmailEngagementChart, type EmailEngagementChartProps, type EmailEngagementPoint };