import { LitElement, PropertyValues } from 'lit'; import { BpTypeElement } from '@blueprintui/components/internals'; /** * @element bp-stepper-item * @since 1.0.0 * @slot - item content * @cssprop --background * @cssprop --color * @cssprop --cursor * @cssprop --border-width * @cssprop --padding * @cssprop --status-color * @part icon * @part badge */ export declare class BpStepperItem extends LitElement implements Pick> { /** determine the visual status state */ accessor status: 'accent' | 'success' | 'warning' | 'danger'; /** selected visual state */ accessor selected: boolean; /** determines if element is mutable or focusable */ accessor disabled: boolean; /** makes the element not mutable, meaning the user can not interact with button */ accessor readonly: boolean; /** @private */ accessor _layout: 'horizontal' | 'vertical'; /** @private */ accessor _index: number; static styles: CSSStyleSheet[]; _internals: ElementInternals; render(): import("lit").TemplateResult<1>; connectedCallback(): void; updated(props: PropertyValues): void; }