type ProgressBarColor = 'secondary' | 'success' | 'warning' | 'danger' | 'muted' | 'primary'; export declare class PProgressBar { type?: ProgressBarColor; value?: number; striped?: boolean; /** * Force dark or light mode. If not provided, the component follows * the browser preference (`prefers-color-scheme`). */ dark?: boolean; auto?: number; interval?: number; private isDark; private darkController; componentWillLoad(): void; onDarkChange(): void; componentDidLoad(): void; disconnectedCallback(): void; getClass(): string; getParentClass(): string; render(): any; } export {};