import { ComponentInterface } from '../../stencil-public-runtime'; /** * The `ino-progress-bar` is a linear progress bar based on the mdc-linear-progress component. */ export declare class InoProgressBar implements ComponentInterface { private mdcProgress; el: HTMLInoProgressBarElement; /** * Sets the buffer progress */ buffer?: number; bufferChanged(newVal: number): void; /** * Indicates whether the state of the progress bar is indeterminate */ indeterminate?: boolean; indeterminateChanged(newVal: boolean): void; /** * Sets the label of the progress bar */ label?: string; /** * Sets the progress of the progress bar. * Should always be between 0 and 1 */ progress?: number; progressChanged(newVal: number): void; componentDidLoad(): void; disconnectedCallback(): void; private initializeComponent; render(): any; }