import { FC } from "react"; import { PrimaryColorType } from "../../types/colors"; export interface ProgressBarProps { value: number; color?: Exclude; showPercentage?: boolean; percentagePosition?: "right" | "left" | "top-left" | "top-right" | "bottom-left" | "bottom-right"; className?: string; } export declare const ProgressBar: FC; export default ProgressBar;