import { ReactNode } from 'react'; export type HorizontalStepperBackground = 'default' | 'transparent'; export type HorizontalStepperCompact = boolean | 'sm' | 'md' | 'lg' | 'xl' | 'xxl'; export interface HorizontalStepperProps { /** * `HorizontalStepper.Item` elements, one per step. */ children: ReactNode; /** * Accessible name for the navigation landmark. */ 'aria-label'?: string; /** * Background style of the stepper track. * @default default */ background?: HorizontalStepperBackground; /** * Collapse labels so only the indicators plus the selected step's label are * visible. `true` collapses at every width; a breakpoint (`'sm'`, `'md'`, * `'lg'`, `'xl'`, `'xxl'`) collapses only below that breakpoint. * @default sm */ compact?: HorizontalStepperCompact; /** * Additional class name on the root element. */ className?: string; } export declare const HorizontalStepper: import('react').ForwardRefExoticComponent> & { Item: { (props: import('./horizontal-stepper-item').HorizontalStepperItemProps): JSX.Element; displayName: string; }; }; export default HorizontalStepper;