import type React from "react";
export interface ProgressBarProps {
    children: React.ReactNode;
    progress: number;
    status?: "info" | "success" | "error";
    size: 32 | 48 | 64 | 96;
    animated?: boolean;
    className?: string;
}
export declare const ProgressCircular: ({ progress, size, status, animated, className, children, }: ProgressBarProps) => import("react/jsx-runtime").JSX.Element;
