/// import { ThemeProps } from '../Icon/icon'; export interface ProgressLineProps { percent?: number; styles?: React.CSSProperties; theme?: ThemeProps; } declare function ProcessLine(props: ProgressLineProps): JSX.Element; declare namespace ProcessLine { var defaultProps: { percent: number; theme: string; }; } export default ProcessLine;