import React from 'react'; import { ChartComponent, AxisOptions } from 'react-native-statistic-charts-core'; import { BaseComponent } from './base/Component'; import { ChartContext } from './context'; export declare class AxisComponent extends BaseComponent { component: ChartComponent; static contextType: React.Context<{ chart: import("react-native-statistic-charts-core").Chart; observe: (cid: string, cb: (elements: import("react-native-statistic-charts-core").Element[]) => void) => void; repaint: (cid: string, layout?: boolean | undefined) => void; destory: (cid: string) => void; setCustomComponent: (comp: React.ReactNode) => void; }>; constructor(props: AxisOptions, context: React.ContextType); componentDidUpdate(prevProps: AxisOptions): void; }