import React from "react"; interface ProgressIndicatorProps { value?: number | null; } declare const ProgressIndicator: ({ value }: ProgressIndicatorProps) => React.JSX.Element; export { ProgressIndicator, type ProgressIndicatorProps };