import React, { FC } from 'react'; export interface PropsType { percentage: number; } declare const ProgressBar: FC>; export default ProgressBar;