export declare type ProggressTheme = "success" | "warning" | "danger" | "info"; export interface BarItem { value: number; striped?: boolean; showProgress?: boolean; animated?: boolean; theme?: ProggressTheme; } /** A component which indicates progress */ export declare class ProgressbarComponent { /** Value of progress bar */ value?: number; height?: number; /** Element class name */ className?: string; /** Element ID */ id?: string; /** Show progress percentage value in text */ showProgress?: boolean; /** Show progress bar with striped style */ striped?: boolean; /** Show progress bar with animation */ animated?: boolean; /** Progress bar theme, "success" | "warning" | "danger" | "info" */ theme?: ProggressTheme; /** Display progress in multiple bars */ multiBars?: Array; styles: string; }