import { HTMLAttributes, FC } from 'react'; declare type BaseElement = HTMLDivElement; declare type BaseProps = HTMLAttributes; declare type ProgressMeterVariants = 'primary' | 'secondary'; export interface ProgressProps extends BaseProps { /** * `class` to be passed to the component. */ readonly className?: BaseProps['className']; /** * Used to indicate the percentage value of the indicator. * Value should between 0 and 1. */ readonly value: number; /** * A string used to tell the user information regarding the progress value. */ readonly label: string; /** * Primary or secondary variant of the progress meter */ readonly variant?: ProgressMeterVariants; } export declare const Progress: FC; export {};