import { HoistProps, LayoutProps, TestSupportProps } from '@xh/hoist/core'; import './Chart.scss'; import { ChartModel } from './ChartModel'; export interface ChartProps extends HoistProps, LayoutProps, TestSupportProps { /** * Ratio of width-to-height of displayed chart. If defined and greater than 0, the chart will * respect this ratio within the available space. Otherwise, the chart will stretch on both * dimensions to take up all available space. */ aspectRatio?: number; } /** * Wrapper Component for a Highcharts chart. Provides basic rendering / lifecycle management * as well as configuration and theme defaults. Sourced from a {@link ChartModel}, either * passed directly via the `model` prop or resolved from context. */ export declare const Chart: import("react").FC>, chart: import("@xh/hoist/core").ElementFactory>;