/** * 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 } from 'lit'; import NileElement from '../internal/nile-element'; /** * Nile vertical-stepper-item component. * * @tag nile-vertical-stepper-item * */ export declare class NileVerticalStepperItem extends NileElement { 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-vertical-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; /** * Render method * @slot This is a slot test */ render(): TemplateResult; getSvg(): TemplateResult; } export default NileVerticalStepperItem; declare global { interface HTMLElementTagNameMap { 'nile-vertical-stepper-item': NileVerticalStepperItem; } }