import React from 'react'; import { StopColorType } from '../LineGradientHelper'; interface ScrollLineChartItemPropsType { width: number; height: number; paddingHorizontal?: number; paddingBottom?: number; startOffsetX: number; viewBox?: string; children?: React.ReactElement | Array | null; linearGradientConfig?: Array<{ stopColor?: Array | string; id: string; }>; onPressOffset?: (offset: number) => void; } declare const ScrollLineChartItem: React.FC; export default ScrollLineChartItem;