/** * Copyright Aquera Inc 2023 * * This source code is licensed under the BSD-3-Clause license found in the * LICENSE file in the root directory of this source tree. */ import { CSSResultArray, TemplateResult, PropertyValues } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile stepper-item component. * * @tag nile-stepper-item * */ export declare class NileStepperItem extends NileElement { absoluteTitle: HTMLDivElement; absoluteSubtitle: HTMLDivElement; title: string; subtitle: string; completed: boolean; current: boolean; private contentBelow; private size; private icon; private isFirst; private isLast; private isComplete; private isCurrent; private isManualMode; private currentStepValue; private completedStepValue; private calculatedCompletedStepValue; private value; private haveFlex; /** * The styles for nile-stepper-item * @remarks If you are extending this class you can extend the base styles with super. Eg `return [super(), myCustomStyles]` */ static get styles(): CSSResultArray; protected updated(_changedProperties: PropertyValues): void; /** * Render method * @slot This is a slot test */ render(): TemplateResult; getSvg(): TemplateResult; } export default NileStepperItem; declare global { interface HTMLElementTagNameMap { 'nile-stepper-item': NileStepperItem; } }