/// <reference types="react" />
import { BaseComponent } from '../../Utilities';
import { IProgressIndicatorProps } from './ProgressIndicator.types';
export declare class ProgressIndicator extends BaseComponent<IProgressIndicatorProps, {}> {
    static defaultProps: {
        label: string;
        description: string;
        width: number;
    };
    constructor(props: IProgressIndicatorProps);
    render(): JSX.Element;
}
