export declare class ZeaProgressBar { /** * The bar type (determinate | indeterminate) */ type: string; /** * The progress (width) percentage for the bar */ percent: any; /** * The size (height) of the progress bar */ size: any; /** * The color for the bar */ color: any; /** * The color for the background track */ backgroundColor: any; /** * The animation type for the indeterminate bar ( continuous | pulsating) */ indeterminateAnimation: any; /** * Main render method for the component * @return {JSX} The generated markup */ render(): any; }