import { LitElement } from "lit"; /** * Steps are used to show progress through a process or to guide users through a multi-step task. * * [Warp component reference](https://warp-ds.github.io/docs/components/steps/frameworks/elements) */ export declare class WarpStepIndicator extends LitElement { /** * Display steps horizontally instead of vertically */ horizontal: boolean; /** * Align steps to the right (vertical layout only) */ right: boolean; static styles: import("lit").CSSResult[]; updated(): void; /** * @internal */ updateStepsContext(): void; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { "w-step-indicator": WarpStepIndicator; } }