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