import { AnimationProps } from '../../global/animation-helpers';
export declare class GovProgressBar implements AnimationProps {
    label?: string;
    variant: any;
    progress: number;
    type: 'linear' | 'circular';
    animation?: string;
    animationDelay?: '2s' | '3s' | '4s' | '5s';
    animationSpeed?: 'slow' | 'slower' | 'fast' | 'faster';
    private allClasses;
    watchAnimations(): void;
    watchAnimationsDelay(): void;
    watchAnimationsSpeed(): void;
    componentWillLoad(): void;
    provideClass(): void;
    private get normalizedProgress();
    private getColor;
    render(): any;
}
