import React from 'react'; import { Scale } from '../../core/utils/scale'; export interface ChartDimensions { width: number; height: number; marginTop: number; marginRight: number; marginBottom: number; marginLeft: number; boundedWidth: number; boundedHeight: number; } export interface ChartsContextType { dataset: any[]; xAccessor: (d: any, i: number) => any; xScale: Scale; yScale: Scale; dimensions: ChartDimensions; } export declare const ChartsContext: React.Context;