@stihl-design-system/components
Version:
Welcome to the STIHL Design System react component library.
6 lines (5 loc) • 420 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, values?: Record<string, string | number>) => string, index: number, total: number, step: Step, isCurrent: boolean) => string;