import { HTMLTemplateResult } from "lit";
declare const ProgressBar_base: import("../../helpers/types/mixins").Component;
/**
* @description
* A progress bar that indicates how far through a task you are.
*/
export declare class ProgressBar extends ProgressBar_base {
static styles: import("lit").CSSResult;
/** Where the verification head is at */
historyHead: number;
/** The total number of items in the data set */
total?: number;
/** The completion head */
completed: number;
private segmentLength;
render(): HTMLTemplateResult;
}
declare global {
interface HTMLElementTagNameMap {
"oe-progress-bar": ProgressBar;
}
}
export {};