import React from 'react'; import { ColorName, ThemeName } from './type'; export interface IProgressProps { className?: string; theme?: ThemeName; color?: ColorName; percent: number; } export declare const LinearProgress: React.FC; export * from './type';