/** @jsx jsx */ import { FC } from 'react'; export interface ProgressIndicatorProps { value: number; max: number; color?: string; } /** * Progress indicator with a label * */ export declare const ProgressIndicator: FC;