import React from 'react';
interface Props {
    style?: any;
    className?: string;
    percentage: number;
    display: string;
    isButton?: boolean;
}
export default function ProgressBar(props: Props): React.JSX.Element;
export {};
