import { ComponentPropsWithoutRef } from 'react'; /** * Props for the StepperList component * @extends ComponentPropsWithoutRef<"div"> */ export type StepperListProps = ComponentPropsWithoutRef<"div">; /** * Container component for organizing and displaying stepper steps. * * Features: * - Groups multiple stepper steps together * - Displays current step label * - Responsive design with mobile-friendly layout * - Accessible with proper ARIA roles * - Automatic step organization * - Visual step indicators * - Context-based current step display * - Flexible layout with CSS Grid/Flexbox * - Container queries for responsive behavior * * @example * * Step 1 * Step 2 * Step 3 * */ export declare const StepperList: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref"> & import('react').RefAttributes>;