import React from "react";
type ProgressBannerPropsType = {
    progress?: {
        done: number;
        total: number;
    };
    title: string;
    description: string;
    completed?: boolean;
    animated?: boolean;
    fullWidth?: boolean;
    className?: string;
};
export declare function ProgressBanner({ progress, title, description, completed, animated, fullWidth, className, }: ProgressBannerPropsType): React.JSX.Element;
export {};
