export interface StepperProps { /** Current step, 1-based. Drives the progress bar fill width. */ currentStep: number; /** Total number of steps (min 2). Never hardcode this value. */ totalSteps: number; /** * Translated step label shown on the left (e.g. t('stepper.label', { currentStep, totalSteps })). * Lokalise key example: "Step {{currentStep}} of {{totalSteps}}". * Omit to hide the label. */ stepLabel?: string; /** * Translated hint text shown on the right (e.g. t('stepper.enterHint')). * Lokalise key example: "Press Enter to continue". * Omit to hide the hint (e.g. on mobile / touch-only flows). * The ↵ symbol is always appended automatically and styled separately. */ enterHint?: string; } export declare function Stepper({ currentStep, totalSteps, stepLabel, enterHint, }: StepperProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Stepper.d.ts.map