import React from "react"; interface ProgressBarProps { value: string; } declare const ProgressValue: ({ value }: ProgressBarProps) => React.JSX.Element; export { ProgressValue, type ProgressBarProps };