import { PharosElement } from '../base/pharos-element'; import type { TemplateResult, CSSResultArray } from 'lit'; /** * Pharos progress bar component. * * @tag pharos-progress-bar * * @slot title - Contains the title of what the progress bar pertains to. * @slot description - Contains additional text content to display below the bar. * */ export declare class PharosProgressBar extends PharosElement { /** * Indicates the value for the progress bar. * @attr value */ value?: number; static get styles(): CSSResultArray; protected render(): TemplateResult; } //# sourceMappingURL=pharos-progress-bar.d.ts.map