import { FC } from 'react';
/**
* Progress Bar properties
*/
export interface ProgressBarPropsStrict {
/** String of class names to add to component */
className?: string;
/** Blue variant */
blue?: boolean;
/** Element to use for base component */
el?: any;
/** Green variant */
green?: boolean;
/** This is an indeterminate state */
indeterminate?: boolean;
/** Value of filled bar without percent sign. E.g. */
progress?: number;
/** Absolutely position to the top or bottom of the parent element */
position?: 'bottom' | 'top';
/** Red variant */
red?: boolean;
/** Small variant */
small?: boolean;
/** Yellow variant */
yellow?: boolean;
/** Blue grey variant */
blueGrey?: boolean;
}
export interface ProgressBarProps extends ProgressBarPropsStrict {
[propName: string]: any;
}
export declare const ProgressBar: FC;