/// <reference types="react" />
import type { ProgressProps } from "./progress";
interface LineProps extends ProgressProps {
    /**
     * 线条高度
     * @default 18
     */
    height?: number;
}
declare function Line(props: LineProps): JSX.Element;
export default Line;
