import { LitElement } from "lit"; import type { StoryMeta } from "../../story-meta.js"; export declare const PROGRESS_VARIANTS: readonly ["default", "success", "warning", "danger"]; export type ProgressVariant = (typeof PROGRESS_VARIANTS)[number]; export declare class EdsProgress extends LitElement { static readonly storyMeta: StoryMeta; static styles: import("lit").CSSResult; value: number; variant: ProgressVariant; indeterminate: boolean; label: string; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "eds-progress": EdsProgress; } } //# sourceMappingURL=progress.d.ts.map