import type { ReactElement } from 'react'; import type { DataGroup, DataSeries, InternalChartType, ErrorBoundaryResponse } from '@shopify/polaris-viz-core'; import type { SkeletonType } from '../ChartSkeleton'; export interface Props { children: ReactElement; data: DataSeries[] | DataGroup[]; id: string | undefined; isAnimated: boolean; theme: string; onError?: ErrorBoundaryResponse; scrollContainer?: Element | null; sparkChart?: boolean; skeletonType?: SkeletonType; type?: InternalChartType; } export declare const ChartContainer: (props: Props) => JSX.Element; //# sourceMappingURL=ChartContainer.d.ts.map