export interface Props { coloredSectionCount: number; totalSections: number; barColor?: string; isFrozen?: boolean; } export declare function ProgressBar({ coloredSectionCount, totalSections, isFrozen, barColor, }: Props): import("react/jsx-runtime").JSX.Element;