import { IconName } from "../icon/exports"; /** * A single step within an `r-stepper`, with complete, active, and optional icon or number states. * * Example * ``` * * Step 1 * Step 2 * Step 3 * * ``` * * @slot - Step label text */ export declare class StepperItem { host: HTMLRStepperItemElement; /** Defines a property complete that determines whether the step is complete */ complete: boolean; /** Defines a property active that determines whether the step is active */ active: boolean; /** Defines an icon for the step. Optional. */ icon?: IconName; /** Defines the step number. Optional. */ number?: number; /** @deprecated (use `number` instead) Index of the progress step */ stepNumber?: number; /** Label for the step icon for screen reader users. */ label?: string; /** * Checks if the slot contains only visually-hidden elements (no visible text). * Returns true if only visually-hidden elements are present. */ private get hasOnlyVisuallyHiddenContent(); private get hasText(); render(): any; }