import { Component } from 'react'; export interface LinearAxisLineProps { height: number; width: number; strokeColor?: string; strokeWidth: number; strokeGradient?: Array<{ offset: number | string; stopOpacity: number; color?: string; }>; scale: any; orientation: 'horizontal' | 'vertical'; } interface LinearAxisLineState { id: string; } export declare class LinearAxisLine extends Component { static defaultProps: Partial; state: LinearAxisLineState; render(): JSX.Element; } export {};