import { ProgressBarBase } from "./progress-bar.base.js"; import { TemplateResult } from "lit"; declare global { interface HTMLElementTagNameMap { 'odx-progress-bar': OdxProgressBar; } } /** * @summary Displays the progress of a task, such as a file upload or a form completion, in a linear bar format. * @since 1.0 * @status rc * * @dependency odx-text * * @slot - Default slot used for the hint text displayed below the progress bar. */ declare class OdxProgressBar extends ProgressBarBase { #private; static tagName: string; static styles: import("lit").CSSResult[]; condensed: boolean; constructor(); protected render(): TemplateResult; } export { OdxProgressBar };