/// import './ProgressStepBarLine.css'; import { Line, PropDirection, PropSize } from '../helpers'; declare type ProgressStepBarLineProps = { lines: Line[]; size: PropSize; direction: PropDirection; activeStepIndex?: number; }; export declare const ProgressStepBarLine: (props: ProgressStepBarLineProps) => JSX.Element; export {};