import { FC, ReactElement } from 'react'; import { GradientProps, Gradient } from '../../Gradient'; export interface LinearAxisLineProps { height: number; width: number; strokeColor?: string; strokeWidth: number; strokeGradient: ReactElement | null; scale: any; orientation: 'horizontal' | 'vertical'; className?: string; } export declare const LinearAxisLine: FC>; export declare const linearAxisLineDefaultProps: { strokeColor: string; strokeWidth: number; };