export interface ProgressBarProps { value: number; showLabel?: boolean; fulfilledColor?: boolean; className?: string; } export declare function ProgressBar({ value, showLabel, fulfilledColor, className }: ProgressBarProps): import("react/jsx-runtime").JSX.Element;