import { ProgressBarColor } from '../../../interfaces/core';
import * as i0 from "@angular/core";
import * as i1 from "../../../utils/coercion";
export declare class ItProgressBarComponent {
    /**
     * The progress bar value [0, 100]
     */
    value: number;
    /**
     * Show the progress label
     * @default false
     */
    showLabel?: boolean;
    /**
     * Show the progress as indeterminate
     * @default false
     */
    indeterminate?: boolean;
    /**
     * The progress bar color
     */
    color: ProgressBarColor | undefined;
    /**
     * Return the background color
     */
    get bgColor(): string;
    static ɵfac: i0.ɵɵFactoryDeclaration<ItProgressBarComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<ItProgressBarComponent, "it-progress-bar", never, { "value": { "alias": "value"; "required": true; }; "showLabel": { "alias": "showLabel"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "color": { "alias": "color"; "required": false; }; }, {}, never, never, true, never>;
    static ngAcceptInputType_showLabel: i1.BooleanInput;
    static ngAcceptInputType_indeterminate: i1.BooleanInput;
}
