@stihl-design-system/components
Version:
Welcome to the STIHL Design System react component library.
6 lines (5 loc) • 403 B
TypeScript
import { Step } from './Step';
import { StepperTranslations } from './Stepper.utils';
export declare const STEP_STATE: readonly ["current", "completed", undefined];
export type StepState = (typeof STEP_STATE)[number];
export declare const getStepAriaLabel: (t: (key: keyof StepperTranslations, replacements?: string[]) => string, index: number, total: number, step: Step, isCurrent: boolean) => string;