import type { PropsWithChildren } from 'react'; import React from 'react'; import type { StyleProp, ViewStyle } from 'react-native'; import type { LineChartContextValue, LineChartDataPoint } from './interfaces'; export declare const ChartContext: React.Context; export interface ChartRootPropsInterface extends PropsWithChildren { data: LineChartDataPoint[]; width?: number; height?: number; padding?: number; containerStyle?: StyleProp; } export type LineChartRootPropsInterface = ChartRootPropsInterface; declare const LineChartProvider: React.FC; export declare const useChart: () => LineChartContextValue; export default LineChartProvider; //# sourceMappingURL=LineChartContext.d.ts.map