import { IconName } from "../icon/exports"; 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; }