/// <reference types="react" />
import { ProgressProps } from './Props';
declare function Line(props: ProgressProps): JSX.Element;
declare namespace Line {
    var defaultProps: {
        strokeWidth: number;
    };
}
export default Line;
