import { HighchartsOptionsInternal } from './chart-options-processor/chart-options-service'; type HighchartsRendererProps = { options: HighchartsOptionsInternal; }; /** * Renders a Highcharts chart with optimized behavior * * This component wraps the `HighchartsReact` component and ensures efficient re-renders * by detecting key changes that require chart re-initialization. * It also handles cases where Highcharts mutates input options by making deep clone. */ export declare const HighchartsRenderer: ({ options }: HighchartsRendererProps) => import("react/jsx-runtime").JSX.Element; export {};