import React from 'react'; import type { ChartTheme } from '../themes/types.js'; export interface ChartContainerProps { title?: string; subtitle?: string; theme?: ChartTheme; height?: number; className?: string; children: (dimensions: { width: number; height: number; }) => React.ReactNode; } export declare function ChartContainer({ title, subtitle, theme, height, className, children, }: ChartContainerProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=ChartContainer.d.ts.map