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