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