import { Component, ReactElement } from 'react';
import { GradientProps, Gradient } from '../../Gradient';
export interface LinearAxisLineProps {
    height: number;
    width: number;
    strokeColor?: string;
    strokeWidth: number;
    strokeGradient: ReactElement<GradientProps, typeof Gradient> | null;
    scale: any;
    orientation: 'horizontal' | 'vertical';
    className?: any;
}
interface LinearAxisLineState {
    id: string;
}
export declare class LinearAxisLine extends Component<LinearAxisLineProps, LinearAxisLineState> {
    static defaultProps: Partial<LinearAxisLineProps>;
    state: LinearAxisLineState;
    render(): JSX.Element;
}
export {};
