import { ProvidersService } from 'fccore2'; import { FcinputComponent } from '../fcinput'; import { Router } from '@angular/router'; /** * fc-progresspercent百分比进度条 * * 展示操作的当前进度。 * * 当一个操作会打断当前界面,或者需要在后台运行,且耗时可能超过2秒时。 * * 当需要显示一个操作完成的百分比时。 * */ export declare class FcprogresspercentComponent extends FcinputComponent { provider: ProvidersService; private router; /**百分比*/ fcPercent: string; _percent: number; /**圆形进度条线的宽度,单位是进度条画布宽度的百分比*/ fcStrokeWidth: string; _stroWidth: number; constructor(provider: ProvidersService, router: Router); ngOnChanges(param: any): void; _afterParentInit(): void; }