import { DataTrackingId } from '../../types'; import { ButtonProps } from '../Button'; /** * Props for the StepperPrevButton component * @extends ButtonProps */ export type StepperPrevButtonProps = Omit & { /** * Label for the previous button. * @default "Previous" */ label?: string; } & DataTrackingId; /** * Previous button component for navigating to the previous step in the Stepper. * * Features: * - Navigates to the previous step when available * - Hides when on the first step * - Restores navigation when returning from completion * - Accessible with proper button semantics * - Customizable label and styling * - Integration with stepper context * - Automatic focus management * - Support for completion state handling * - Automatic tracking ID generation for analytics * * @example * * * @example * console.log('Going back')} * /> */ export declare const StepperPrevButton: import('react').ForwardRefExoticComponent & { /** * Label for the previous button. * @default "Previous" */ label?: string; } & DataTrackingId & import('react').RefAttributes>;