export declare class ScProgress {
  hostEl: HTMLElement;
  /**
   * Percentage of progress bar
   */
  percentage?: number;
  /**
   * Use indeterminate mode for the progress bar when you do not know how long an operation will take.
   */
  indeterminate: boolean;
  /**
   * Set shape of the progress indicator to be circular
   */
  circular?: boolean;
  /**
   * radius for circular progress in pixels
   */
  radius?: number;
  /**
   * Label to be displayed inside the progress
   */
  label?: string;
  angleGap?: number;
  circleEl: any;
  spinnerAnimationId: any;
  renderCircular(radius: any): any;
  render(): any;
}
