interface IProgress { color?: string; } declare function Progress({ color }: IProgress): JSX.Element; export default Progress;