/**
* @license
* Copyright 厦门乾元盛世科技有限公司 All Rights Reserved.
*
* Use of this source code is governed by an MIT-style license that can be
* found in the LICENSE file.
*/
import { EventEmitter } from '@angular/core';
export declare class WeUIProgressBar {
/**
* 颜色,取值:default、primary、warn等。默认为default。
* 自定义的颜色名称与色值,可以定义在 工程根目录/src/theme/variables.scss 文件中的 $colors 对象。
*/
color: string;
/**
* Type of the progress bar.
* Input must be one of these values: determinate, indeterminate. Defaults to 'determinate'.
*
*
In the "determinate" mode, the progress is set via the value property, which can be a whole number between 0 and 100.
*In the "indeterminate" mode, the progress bar indicates that something is happening without conveying a discrete progress.
*In the "indeterminate" mode, the value property is ignored.