import React, { FC } from 'react'; import { ProgressProps } from './progress'; interface LineProps extends ProgressProps { prefixCls?: string; children?: React.ReactNode; } declare const Line: FC; export default Line;