import { ComponentInterface } from '../../../stencil-public-runtime'; export declare class ProgressBar implements ComponentInterface { color: 'primary' | 'secondary' | 'success' | 'info' | 'warning' | 'danger' | 'light' | 'dark' | 'link'; value: number; size: 'xs' | 'sm' | 'md' | 'lg'; description: string; hideDescription: boolean; progressLabel: string; hideProgressLabel: boolean; validateValue(): number; render(): any; }